/* Custom CSS for Elementor schedule cards */

.elk-schedule-container {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.5rem;
    padding: 1.5rem;
    width: 100% !important;
    
}
.elk-schedule-card {
    background-color: #ffffff;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    display: flex;
    border-radius: 8px !important;
    flex-direction: column;
    align-items: center;
}
.elk-team-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}
.elk-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.elk-team img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}
.elk-vs {
    font-size: 0.75rem;
    font-weight: bold;
    margin: 0 0.5rem;
}
.elk-divider {
    width: 100%;
    border-top: 1px solid #d1d5db;
    margin: 1rem 0;
}
/* .elk-schedule-card.elk-completed {
    background-color: rgba(255, 192, 203, 0.6) !important;  opaque pink 
}*/
@media (min-width: 768px) {
    .elk-schedule-container {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: none !important;
        width: 100% !important;
    }
}
@media (max-width: 767px) {
    .elk-team h5 {
        font-size: 0.875rem;
    }
    .elk-vs {
        font-size: 0.5rem;
    }
}
