/* Canli Yayinlar */

.broadcast-schedule-page {
    background: #f4f5f7;
    padding: 28px 0 42px;
}

.broadcast-tabs {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
}

.broadcast-tab {
    position: relative;
    border: 0;
    background: transparent;
    color: #374151;
    padding: 0 6px 13px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.broadcast-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: transparent;
}

.broadcast-tab.active {
    color: #c91b3f;
}

.broadcast-tab.active::after {
    background: #c91b3f;
}

.broadcast-panel {
    display: none;
}

.broadcast-panel.active {
    display: block;
}

.broadcast-list-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
    padding: 28px 24px;
}

.broadcast-row {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 116px;
    padding: 20px 0;
    border-bottom: 1px solid #d8dde5;
}

.broadcast-row:first-child {
    padding-top: 0;
}

.broadcast-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.broadcast-date-badge {
    width: 80px;
    height: 90px;
    border-radius: 7px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 0 auto;
}

.broadcast-date-badge-upcoming {
    background: linear-gradient(180deg, #ef2a2e 0%, #c40f18 100%);
}

.broadcast-date-badge-past {
    background: linear-gradient(180deg, #4b5563 0%, #182335 100%);
}

.broadcast-day {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 0.95;
}

.broadcast-month {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.broadcast-info {
    min-width: 0;
}

.broadcast-time {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.broadcast-title {
    color: #020617;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.22;
    margin: 0 0 5px;
}

.broadcast-guest,
.broadcast-specialty {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.35;
}

.broadcast-action {
    justify-self: end;
}

.broadcast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    min-height: 39px;
    border: 1px solid #cfd6df;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.broadcast-btn:hover {
    border-color: #c91b3f;
    color: #c91b3f;
    box-shadow: 0 8px 18px rgba(201, 27, 63, 0.12);
}

.broadcast-empty {
    color: #64748b;
    font-weight: 700;
    padding: 36px 12px;
    text-align: center;
}

.broadcast-modal-content {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
}

.broadcast-modal-content .modal-body {
    text-align: center;
    padding: 8px 28px 30px;
}

.broadcast-modal-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff1f2;
    color: #c91b3f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.broadcast-modal-content h3 {
    color: #020617;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 10px;
}

.broadcast-modal-content p {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 14px;
}

.broadcast-modal-note {
    display: inline-flex;
    border-radius: 999px;
    background: #f8fafc;
    color: #64748b;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .broadcast-schedule-page {
        padding: 20px 0 32px;
    }

    .broadcast-tabs {
        justify-content: center;
        gap: 20px;
        margin-bottom: 18px;
    }

    .broadcast-tab {
        font-size: 0.92rem;
        padding-bottom: 11px;
    }

    .broadcast-list-card {
        border-radius: 14px;
        padding: 22px 18px;
    }

    .broadcast-row {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        min-height: 0;
        padding: 22px 0;
    }

    .broadcast-date-badge {
        width: 72px;
        height: 84px;
    }

    .broadcast-day {
        font-size: 1.85rem;
    }

    .broadcast-month {
        font-size: 0.82rem;
    }

    .broadcast-title {
        font-size: 1rem;
    }

    .broadcast-action {
        grid-column: 2;
        justify-self: start;
        margin-top: 8px;
    }

    .broadcast-btn {
        min-width: 112px;
    }

}

@media (max-width: 420px) {
    .broadcast-tabs {
        gap: 12px;
    }

    .broadcast-tab {
        font-size: 0.85rem;
    }

    .broadcast-list-card {
        padding: 18px 14px;
    }

    .broadcast-row {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }

    .broadcast-date-badge {
        width: 64px;
        height: 76px;
    }

    .broadcast-day {
        font-size: 1.62rem;
    }
}
