/* Dashboard Styles */
.dashboard-page {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.dashboard-page .header {
    background: linear-gradient(135deg, #1a3d7c 0%, #2c5aa0 100%);
    box-shadow: 0 4px 20px rgba(26, 61, 124, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.dashboard-page .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-page .header .logo-text {
    color: white;
}

.dashboard-page .header .logo-ampersand {
    color: #c8ff00;
}

/* Language selector container styling for dashboard */
.dashboard-page .header .language-selector {
    display: flex;
    gap: 5px;
}

/* Language selector styling for dashboard */
.dashboard-page .header .lang-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard-page .header .lang-btn:hover,
.dashboard-page .header .lang-btn.active {
    background: #c8ff00;
    color: #1a3d7c;
}

/* Avatar menu styling for dashboard */
.dashboard-page .header .avatar-name {
    color: white;
}

.dashboard-page .header .avatar-circle {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dashboard-page .header .avatar-circle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Booking button styling for dashboard */
.dashboard-page .header .btn-header {
    background: #c8ff00;
    color: #1a3d7c;
    border: none;
}

.dashboard-page .header .btn-header:hover {
    background: #b8e600;
    transform: translateY(-1px);
}

/* Hamburger menu styling for dashboard */
.dashboard-page .header .hamburger-menu {
    color: white;
}

.dashboard-page .header .hamburger-menu:hover {
    color: #c8ff00;
}

/* Dropdown navigation styling for dashboard */
.dashboard-page .header .dropdown-nav {
    background: rgba(26, 61, 124, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 255, 0, 0.2);
}

.dashboard-page .header .dropdown-link {
    color: white;
}

.dashboard-page .header .dropdown-link:hover {
    color: #c8ff00;
    background: rgba(200, 255, 0, 0.1);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info span {
    color: #333;
    font-weight: 500;
}

.logout-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-btn:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

/* Dashboard Container */
.dashboard-container {
    padding: 2rem 0;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a3d7c 0%, #2c5aa0 100%);
    border-radius: 25px;
    color: white;
    box-shadow: 0 15px 40px rgba(26, 61, 124, 0.25);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
}

.welcome-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.welcome-section p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 0.25rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(26, 61, 124, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 61, 124, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a3d7c 0%, #2c5aa0 50%, #c8ff00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover::before {
    opacity: 1;
}

.dashboard-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 61, 124, 0.2);
    border-color: rgba(26, 61, 124, 0.15);
}

.dashboard-card h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a3d7c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.dashboard-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a3d7c 0%, #c8ff00 100%);
    border-radius: 2px;
}

.dashboard-card h2 i {
    color: #c8ff00;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(200, 255, 0, 0.3));
}

/* Quick Actions */
.quick-actions {
    grid-column: span 1;
    min-height: auto;
    height: fit-content;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #1a3d7c 0%, #2c5aa0 100%);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 61, 124, 0.4);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1a3d7c;
    border: 2px solid rgba(26, 61, 124, 0.1);
}

.action-btn.secondary:hover {
    background: linear-gradient(135deg, #1a3d7c 0%, #2c5aa0 100%);
    color: white;
    border-color: #1a3d7c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 61, 124, 0.3);
}

/* Bookings List */
.bookings-list {
    max-height: 400px;
    overflow-y: auto;
}

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(26, 61, 124, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.booking-item:hover {
    border-color: #c8ff00;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 61, 124, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.booking-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.booking-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.booking-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.booking-status.confirmed {
    background: #d4edda;
    color: #155724;
}

.booking-status.pending {
    background: #fff3cd;
    color: #856404;
}

.booking-status.completed {
    background: #cce5ff;
    color: #004085;
}

/* Activity List */
.activity-list {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-left: 4px solid #c8ff00;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 0 16px 16px 0;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.activity-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    box-shadow: 0 5px 15px rgba(26, 61, 124, 0.1);
}

.activity-item i {
    color: #1a3d7c;
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(26, 61, 124, 0.2));
}

.activity-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.activity-content p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.activity-time {
    font-size: 0.75rem;
    color: #999;
    margin-left: auto;
}

/* Profile Info */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 61, 124, 0.05);
}

.profile-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(26, 61, 124, 0.1);
}

.profile-item .label {
    font-weight: 600;
    color: #1a3d7c;
    font-size: 0.95rem;
}

.profile-item .value {
    color: #2c5aa0;
    font-weight: 500;
}

.edit-profile-btn {
    background: linear-gradient(135deg, #1a3d7c 0%, #2c5aa0 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(26, 61, 124, 0.2);
}

.edit-profile-btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d7c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 61, 124, 0.3);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.75rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 1px solid rgba(26, 61, 124, 0.05);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 61, 124, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3d7c;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* Contact Info */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #666;
}

.contact-item i {
    color: #1a3d7c;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: linear-gradient(135deg, #c8ff00 0%, #a5d700 100%);
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(200, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item i:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(200, 255, 0, 0.4);
    background: linear-gradient(135deg, #a5d700 0%, #8bc700 100%);
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1a3d7c;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-btn:hover {
    background: #2c5aa0;
    transform: translateY(-1px);
}

/* Quick Tips */
.quick-tips {
    grid-column: span 2;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tip-item i {
    color: #c8ff00;
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.tip-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Profile Status */
.status-active {
    color: #28a745 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-active i {
    font-size: 0.9rem;
}

/* Loading States */
.loading-state {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.loading-state i {
    color: #c8ff00;
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.empty-state i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.empty-state p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .quick-actions {
        grid-column: span 1;
    }
    
    .quick-tips {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem 0;
    }
    
    .welcome-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .user-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-card {
        padding: 1rem;
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .welcome-section p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .activity-time {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .contact-item i {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }
}

/* Animation for new items */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card {
    animation: slideInUp 0.5s ease-out;
}


/* Focus states for accessibility */
.action-btn:focus,
.contact-btn:focus,
.edit-profile-btn:focus,
.logout-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
/* Profile Edit Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    color: #1a3d7c;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h2 i {
    color: #c8ff00;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 1rem 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-section h3 {
    color: #1a3d7c;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #c8ff00;
}

.form-section h3 i {
    color: #c8ff00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c8ff00;
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.1);
}

.form-group input[readonly] {
    background: #f9fafb;
    color: #6b7280;
}

.form-help {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    font-family: 'Poppins', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #c8ff00;
    border-color: #c8ff00;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: #1a3d7c;
    font-weight: bold;
    font-size: 12px;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

@media (prefers-contrast: high) {
    .dashboard-card {
        border: 2px solid #000;
    }
    
    .action-btn.secondary {
        border: 2px solid #000;
    }
    
    .booking-item {
        border: 2px solid #000;
    }
}

/* Dashboard Sections */
.dashboard-section {
    margin: 3rem 0;
    padding: 2rem 1rem;
    scroll-margin-top: 100px; /* For smooth scrolling with fixed header */
}

.dashboard-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a3d7c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.dashboard-section .section-header h2 i {
    color: #c8ff00;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(200, 255, 0, 0.3));
}

.dashboard-section .section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Settings Styles */
.settings-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.switch-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.switch-label:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    transform: translateX(5px);
}

.switch-label input[type="checkbox"] {
    display: none;
}

.switch-slider {
    position: relative;
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.switch-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch-label input[type="checkbox"]:checked + .switch-slider {
    background: linear-gradient(135deg, #1a3d7c 0%, #2c5aa0 100%);
}

.switch-label input[type="checkbox"]:checked + .switch-slider::after {
    transform: translateX(24px);
}

.settings-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(26, 61, 124, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1a3d7c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-select:hover {
    border-color: #c8ff00;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.settings-select:focus {
    outline: none;
    border-color: #1a3d7c;
    box-shadow: 0 5px 15px rgba(26, 61, 124, 0.1);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a3d7c 0%, #2c5aa0 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(26, 61, 124, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d7c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 61, 124, 0.3);
}
