/**Layer 84: Calendar*/
.calendar-month {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.calendar-header {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e5e7eb
}

.calendar-day-header {
    background: #f9fafb;
    padding: .75rem;
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    color: #6b7280
}

.calendar-day {
    background: #fff;
    min-height: 80px;
    padding: .5rem;
    position: relative
}

.calendar-day.empty {
    background: #f9fafb
}

.calendar-day.today {
    background: #dbeafe;
    border: 2px solid #3b82f6
}

.calendar-day.has-events {
    background: #fef3c7
}

.day-number {
    font-size: .875rem;
    font-weight: 600
}

.event-count {
    position: absolute;
    bottom: .5rem;
    right: .5rem;
    width: 20px;
    height: 20px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .625rem;
    font-weight: 700
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.schedule-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    display: flex;
    gap: 1.5rem
}

.schedule-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    min-width: 80px
}

.schedule-details {
    flex: 1
}

.schedule-league {
    font-size: .75rem;
    color: #6b7280;
    margin-bottom: .5rem
}

.schedule-match {
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .75rem
}

.schedule-match .vs {
    color: #9ca3af;
    font-size: .875rem
}

.schedule-badge {
    padding: .25rem .75rem;
    background: #ef4444;
    color: #fff;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 700;
    margin-top: .5rem;
    display: inline-block;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

@media (max-width:768px) {
    .calendar-grid {
        font-size: .75rem
    }

    .calendar-day {
        min-height: 60px;
        padding: .25rem
    }

    .schedule-item {
        flex-direction: column;
        gap: 1rem
    }
}