/* ===== PREMIUM NAVIGATION STYLES ===== */
.navbar-glass {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="dark"] .navbar-glass {
    background: rgba(30, 41, 59, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-3d {
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 rgba(0, 0, 0, 0.1) inset;
}

/* Premium Brand */
.premium-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.premium-brand:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.brand-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    line-height: 1;
}

.brand-sub {
    font-size: 0.7rem;
    opacity: 0.8;
    color: white;
    font-weight: 500;
}

/* Premium Navigation Links */
.nav-link-premium {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    margin: 0 0.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-link-premium:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-link-premium.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2));
    color: white !important;
}

.nav-icon {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link-premium:hover .nav-icon {
    transform: scale(1.2);
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-premium:hover .nav-underline {
    width: 80%;
}

/* Premium Dropdown */
.premium-dropdown .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    margin-top: 0.5rem !important;
}

[data-bs-theme="dark"] .premium-dropdown .dropdown-menu {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-dropdown-item:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateX(5px);
}

/* User Menu */
.user-menu {
    padding: 0.5rem 1rem !important;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    margin-left: 0.75rem;
}

.username {
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.user-role {
    font-size: 0.7rem;
    opacity: 0.8;
    color: white;
}

/* Theme Toggle */
.theme-toggle-wrapper {
    margin-right: 1rem;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(15deg);
}

.theme-toggle-btn .bi-sun-fill,
.theme-toggle-btn .bi-moon-fill {
    position: absolute;
    transition: all 0.3s ease;
}

[data-bs-theme="light"] .theme-toggle-btn .bi-moon-fill {
    opacity: 0;
    transform: rotate(-90deg);
}

[data-bs-theme="dark"] .theme-toggle-btn .bi-sun-fill {
    opacity: 0;
    transform: rotate(90deg);
}

/* Premium Toggler */
.premium-toggler {
    border: none;
    background: transparent;
    width: 30px;
    height: 25px;
    position: relative;
    padding: 0;
}

.toggler-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Premium Alerts */
.alert-premium {
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.alert-success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.2), rgba(39, 174, 96, 0.1));
    color: #27ae60;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.1));
    color: #e74c3c;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    0% { width: 100%; }
    100% { width: 0%; }
}

.btn-close-premium {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-close-premium:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Premium Footer */
.footer-premium {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: waveMove 3s linear infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1s; }
.wave-3 { animation-delay: 2s; }

@keyframes waveMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.footer-content {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.footer-text h5 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-text p {
    color: var(--muted);
    margin-bottom: 0;
}

.footer-info {
    color: var(--muted);
}

.copyright {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.credits {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
.slide-in-top {
    animation: slideInTop 0.6s ease-out;
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content {
    padding-top: 2rem;
    min-height: calc(100vh - 200px);
}

/* Responsive */
@media (max-width: 768px) {
    .premium-brand {
        padding: 0.25rem 0.5rem;
    }
    
    .brand-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .brand-main {
        font-size: 1rem;
    }
    
    .brand-sub {
        font-size: 0.6rem;
    }
    
    .nav-link-premium {
        padding: 0.5rem 1rem !important;
    }
    
    .user-menu {
        padding: 0.25rem 0.5rem !important;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .theme-toggle-btn {
        width: 40px;
        height: 40px;
    }
}

/* Добавляем к существующим медиа-запросам */
@media (max-width: 576px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-info {
        text-align: center !important;
        margin-top: 1rem;
    }
}


/* Обновляем переменные для светлой темы */
:root {
    /* Modern Color Palette - Premium Light */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;

    /* Premium Light Theme */
    --bg-light: #f8fafc;
    --card-light: #ffffff;
    --text-light: #1e293b;
    --border-light: #e2e8f0;
    --muted-light: #64748b;
    --gradient-light: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    /* Glassmorphism эффекты для светлой темы */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Акцентные цвета */
    --accent-gradient: linear-gradient(135deg, #667eea, #764ba2);
    --success-gradient: linear-gradient(135deg, #10b981, #34d399);
    --warning-gradient: linear-gradient(135deg, #f59e0b, #fbbf24);
    --danger-gradient: linear-gradient(135deg, #ef4444, #f87171);
}

[data-bs-theme="light"] {
    --bg: var(--bg-light);
    --card: var(--card-light);
    --text: var(--text-light);
    --border: var(--border-light);
    --muted: var(--muted-light);
    --gradient-bg: var(--gradient-light);
}

/* Premium Light Navigation */
[data-bs-theme="light"] .navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--secondary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .navbar-brand {
    color: white !important;
    font-weight: 700;
}

[data-bs-theme="light"] .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

[data-bs-theme="light"] .nav-link:hover {
    color: white !important;
    transform: translateY(-1px);
}

/* Premium Cards для светлой темы */
[data-bs-theme="light"] .card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="light"] .card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
}

[data-bs-theme="light"] .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 20px 20px 0 0 !important;
    border-bottom: none;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

[data-bs-theme="light"] .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

[data-bs-theme="light"] .card-title {
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Premium Tables для светлой темы */
[data-bs-theme="light"] .table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
}

[data-bs-theme="light"] .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(99, 102, 241, 0.03);
}

[data-bs-theme="light"] .table-hover > tbody > tr:hover {
    background-color: rgba(99, 102, 241, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

[data-bs-theme="light"] .table thead th {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: var(--text-light);
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding: 1rem 0.75rem;
}

[data-bs-theme="light"] .table tbody td {
    padding: 1rem 0.75rem;
    border-color: #f1f5f9;
    font-weight: 500;
}

/* Premium Buttons для светлой темы */
[data-bs-theme="light"] .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

[data-bs-theme="light"] .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

[data-bs-theme="light"] .btn:hover::before {
    left: 100%;
}

[data-bs-theme="light"] .btn-primary {
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

[data-bs-theme="light"] .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

[data-bs-theme="light"] .btn-warning {
    background: var(--warning-gradient);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    color: white;
}

[data-bs-theme="light"] .btn-danger {
    background: var(--danger-gradient);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    color: white;
}

[data-bs-theme="light"] .btn-success {
    background: var(--success-gradient);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    color: white;
}

/* Premium Badges для светлой темы */
[data-bs-theme="light"] .badge {
    font-weight: 700;
    padding: 0.6em 1em;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

[data-bs-theme="light"] .badge.bg-success {
    background: var(--success-gradient) !important;
    color: white;
}

[data-bs-theme="light"] .badge.bg-danger {
    background: var(--danger-gradient) !important;
    color: white;
}

[data-bs-theme="light"] .badge.bg-info {
    background: var(--accent-gradient) !important;
    color: white;
}

[data-bs-theme="light"] .badge.bg-warning {
    background: var(--warning-gradient) !important;
    color: white;
}

/* Premium Modal для светлой темы */
[data-bs-theme="light"] .modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

[data-bs-theme="light"] .modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-bottom: none;
    padding: 1.5rem 2rem;
    position: relative;
}

[data-bs-theme="light"] .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

[data-bs-theme="light"] .modal-title {
    font-weight: 700;
    position: relative;
    z-index: 2;
}

[data-bs-theme="light"] .modal-body {
    padding: 2rem;
    background: transparent;
}

[data-bs-theme="light"] .btn-close {
    filter: invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

[data-bs-theme="light"] .btn-close:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Premium Forms для светлой темы */
[data-bs-theme="light"] .form-control,
[data-bs-theme="light"] .form-select {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

[data-bs-theme="light"] .form-control:focus,
[data-bs-theme="light"] .form-select:focus {
    background: white;
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.1),
        0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

[data-bs-theme="light"] .form-label {
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

[data-bs-theme="light"] .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

/* Theme Toggle для светлой темы */
[data-bs-theme="light"] #themeToggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

[data-bs-theme="light"] #themeToggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(15deg);
}

/* Body Background для светлой темы */
[data-bs-theme="light"] body {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Footer для светлой темы */
[data-bs-theme="light"] .footer-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Alerts для светлой темы */
[data-bs-theme="light"] .alert {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    border-left: 4px solid;
}

[data-bs-theme="light"] .alert-success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.8));
}

[data-bs-theme="light"] .alert-danger {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(255, 255, 255, 0.8));
}

/* Анимации для светлой темы */
[data-bs-theme="light"] .table tbody tr {
    animation: slideInUp 0.6s ease;
    animation-fill-mode: both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover эффекты для светлой темы */
[data-bs-theme="light"] .btn-group .btn {
    transition: all 0.3s ease;
    margin: 0 2px;
    border-radius: 10px;
}

[data-bs-theme="light"] .btn-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Progress indicators */
[data-bs-theme="light"] .progress {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

[data-bs-theme="light"] .progress-bar {
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Premium Header Card */
.premium-header-card {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    margin-bottom: 2rem;
}

.premium-header-card .card-body {
    padding: 2rem;
}

.header-content h2 {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Premium Button */
.btn-premium {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
}

/* Отступы для всех страниц */
.main-content {
    padding-top: 3rem !important; /* Увеличиваем отступ сверху */
    min-height: calc(100vh - 200px);
}

/* Специальный отступ для страницы бронирования */
body:has(.booking-page) .main-content {
    padding-top: 4rem !important; /* Еще больше для бронирования */
}

/* Альтернативный способ - через класс для booking страницы */
.booking-container {
    margin-top: 2rem;
}

/* Улучшенные отступы для мобильных устройств */
@media (max-width: 768px) {
    .main-content {
        padding-top: 2rem !important;
    }

    .premium-header-card .card-body {
        padding: 1.5rem;
    }

    .header-content h2 {
        font-size: 1.5rem;
    }

    .btn-premium {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Анимация появления кнопки */
@keyframes buttonSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-premium {
    animation: buttonSlideIn 0.6s ease;
}

/* Для темной темы - корректируем цвета */
[data-bs-theme="dark"] .premium-header-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .header-content h2 {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Стили для правого блока с временем и переключателем */
.header-content + .d-flex {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Для светлой темы */
[data-bs-theme="light"] .header-content + .d-flex {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .card-body .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .header-content + .d-flex {
        align-self: flex-end;
    }
}