﻿.schedule-facelift {
    --fx-primary: #e67e22;
    --fx-bg: #080a0d;
    --fx-text: #d2d9df;
    --fx-border: rgba(230, 126, 34, 0.28);
    --schedule-primary: #e67e22;
    --schedule-muted: #afb7be;
}

.schedule-facelift .hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.schedule-facelift .hero-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(230, 126, 34, 0.9);
    padding-bottom: 2px;
}

.schedule-facelift .hero-note {
    margin-top: 22px;
    color: #d6dde3;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.schedule-facelift .schedule-tab {
    margin-top: 20px;
}

.schedule-facelift .schedule-tab .nav-tabs {
    border: none;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(20, 23, 29, 0.7);
}

.schedule-facelift .schedule-tab .nav-item {
    flex: 1 1 0;
    margin: 0;
}

.schedule-facelift .schedule-tab .nav-link {
    width: 100%;
    height: 100%;
    padding: 13px 10px;
    border: 1px solid rgba(230, 126, 34, 0.26);
    border-radius: 12px !important;
    background: rgba(13, 16, 21, 0.74);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.32;
    text-align: center;
}

.schedule-facelift .schedule-tab .nav-link span {
    display: block;
    color: var(--schedule-muted);
    margin-top: 4px;
    font-size: 13px;
}

.schedule-facelift .schedule-tab .nav-link.active {
    border-color: var(--schedule-primary);
    background: linear-gradient(120deg, rgba(230, 126, 34, 0.3) 0%, rgba(185, 86, 0, 0.3) 100%);
}

.schedule-facelift .tab-content {
    margin-top: 20px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(230, 126, 34, 0.24);
    background: rgba(14, 16, 21, 0.7);
}

.schedule-facelift .day-list {
    display: grid;
    gap: 14px;
}

.schedule-facelift .schedule-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(230, 126, 34, 0.24);
    background: linear-gradient(160deg, rgba(24, 27, 33, 0.92), rgba(18, 20, 25, 0.78));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 240ms ease, border-color 240ms ease;
}

.schedule-facelift .schedule-item:hover,
.schedule-facelift .schedule-item:focus {
    transform: translateY(-4px);
    border-color: var(--schedule-primary);
}

.schedule-facelift .schedule-head {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.schedule-facelift .schedule-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(230, 126, 34, 0.44);
    flex-shrink: 0;
}

.schedule-facelift .schedule-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.schedule-facelift .schedule-info h5 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.22;
}

.schedule-facelift .schedule-info p {
    margin-bottom: 0;
    color: #bcc4ca;
    line-height: 1.4;
}

.schedule-facelift .schedule-meta {
    text-align: right;
}

.schedule-facelift .schedule-meta p {
    margin: 0;
    color: #d7dde3;
    line-height: 1.55;
}

.schedule-facelift .schedule-meta p + p {
    margin-top: 4px;
}

.schedule-facelift .schedule-meta i {
    color: var(--schedule-primary);
    margin-right: 6px;
}

.schedule-facelift .schedule-empty {
    text-align: center;
    color: #adb5bc;
    border: 1px dashed rgba(230, 126, 34, 0.36);
    border-radius: 14px;
    padding: 20px 16px;
    background: rgba(230, 126, 34, 0.06);
}

@media only screen and (max-width: 991px) {
    .schedule-facelift .schedule-tab .nav-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .schedule-facelift .schedule-tab .nav-item {
        width: 100%;
    }

    .schedule-facelift .schedule-meta {
        text-align: left;
    }
}

@media only screen and (max-width: 767px) {
    .schedule-facelift .schedule-tab .nav-tabs {
        grid-template-columns: 1fr;
    }

    .schedule-facelift .tab-content {
        padding: 14px;
    }

    .schedule-facelift .schedule-item {
        padding: 14px;
    }

    .schedule-facelift .schedule-head {
        min-width: 100%;
    }
}

