/* Connect Design System v2.0 - Pages Stylesheet */

/* Reusable Glassmorphic Components */
.glass-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.01) !important;
    color: #0f172a !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

/* Glass Card Headers and Footers */
.glass-card .card-header {
    background: transparent !important;
    border-bottom: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    padding: 1.5rem !important;
}

.glass-card .card-body {
    padding: 1.5rem !important;
}

.glass-card .card-footer {
    background: transparent !important;
    border-top: 1px solid #e2e8f0 !important;
    padding: 1.5rem !important;
}

/* Dark Theme Overrides for Glass Card */
body.dark-theme .glass-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

body.dark-theme .glass-card:hover {
    border-color: rgba(0, 229, 255, 0.3) !important;
    box-shadow: 0 30px 60px rgba(0, 229, 255, 0.08), inset 0 1px 2px rgba(255, 255, 255, 0.25) !important;
}

body.dark-theme .glass-card .card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
}

body.dark-theme .glass-card .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Theme-matching Text Helper Classes inside Glass Card */
.glass-card .text-white {
    color: #0f172a !important;
}
body.dark-theme .glass-card .text-white {
    color: #ffffff !important;
}

.glass-card .text-light-muted {
    color: #64748b !important;
}
body.dark-theme .glass-card .text-light-muted {
    color: #94a3b8 !important;
}

/* Glass Form Inputs */
.form-control-glass {
    display: block !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 12px !important;
    color: #0f172a !important;
    padding: 0.75rem 1.2rem !important;
    height: auto !important;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease-in-out !important;
}

.form-control-glass::placeholder {
    color: #64748B !important;
}

.form-control-glass:focus {
    background: #ffffff !important;
    border-color: #3b82f6 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
    color: #0f172a !important;
}

.form-control-glass:disabled, .form-control-glass[readonly] {
    background: #f1f5f9 !important;
    color: #94A3B8 !important;
    border-color: #e2e8f0 !important;
}

/* Dark Theme Overrides */
body.dark-theme .form-control-glass {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
}

body.dark-theme .form-control-glass:focus {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: #00E5FF !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25) !important;
    color: #FFFFFF !important;
}

body.dark-theme .form-control-glass:disabled, body.dark-theme .form-control-glass[readonly] {
    background: rgba(255, 255, 255, 0.02) !important;
    color: #94A3B8 !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}
}

/* Custom Select Dropdowns */
select.form-control-glass {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.2rem center !important;
    padding-right: 2.5rem !important;
}

select.form-control-glass option {
    background: #0B132B !important;
    color: #FFFFFF !important;
}

/* Premium Glass Buttons */
.btn-glass-primary {
    background: linear-gradient(135deg, #1D4ED8 0%, #00E5FF 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600 !important;
    padding: 0.75rem 1.75rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-glass-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 12px 25px rgba(0, 229, 255, 0.4) !important;
    color: #FFFFFF !important;
}

.btn-glass-primary:active {
    transform: translateY(0) !important;
}

.btn-glass-secondary {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 12px !important;
    color: #0f172a !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600 !important;
    padding: 0.75rem 1.75rem !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02) !important;
}

.btn-glass-secondary:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

body.dark-theme .btn-glass-secondary {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}

body.dark-theme .btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: #FFFFFF !important;
}

.btn-glass-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    border-radius: 12px !important;
    color: #F87171 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600 !important;
    padding: 0.75rem 1.75rem !important;
    transition: all 0.3s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-glass-danger:hover {
    background: rgba(239, 68, 68, 0.25) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.2) !important;
}

/* Page Specific Wrappers & Layouts */

/* 1. Auth Section */
.auth-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    position: relative;
    z-index: 2;
}

.auth-card {
    width: 100%;
    max-width: 950px;
    overflow: hidden;
}

.auth-logo-panel {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.auth-logo-panel::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

.auth-form-panel {
    padding: 3rem !important;
}

@media (max-width: 768px) {
    .auth-logo-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2rem;
    }
    .auth-form-panel {
        padding: 2rem !important;
    }
}

/* Social Login Buttons */
.social-login-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-social-glass {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease !important;
}

.btn-social-glass:hover {
    background: #f1f5f9 !important;
    border-color: #3b82f6 !important;
    transform: scale(1.1) translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
}

body.dark-theme .btn-social-glass {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
}

body.dark-theme .btn-social-glass:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #00E5FF !important;
    color: #00E5FF !important;
    box-shadow: 0 8px 20px rgba(0, 229, 255, 0.2) !important;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94A3B8;
    font-size: 0.85rem;
    margin: 1.5rem 0;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-divider:not(:empty)::before {
    margin-right: .5em;
}

.auth-divider:not(:empty)::after {
    margin-left: .5em;
}

/* 2. Profile Section */
.profile-container {
    padding-top: 100px;
    padding-bottom: 50px;
}

.profile-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    color: #94A3B8 !important;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.profile-nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #FFFFFF !important;
}

.profile-nav-link.active {
    background: rgba(29, 78, 216, 0.15) !important;
    border: 1px solid rgba(29, 78, 216, 0.3);
    color: #00E5FF !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.05);
}

.profile-nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* User Avatar upload styling */
.user-avatar-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.user-avatar-preview-box {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(0, 229, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00E5FF;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.15);
}

.user-avatar-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-avatar-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: #EF4444 !important;
    border: none !important;
    color: white !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    z-index: 10;
}

/* Glass Tables */
.table-glass {
    width: 100%;
    border-collapse: collapse;
    color: #FFFFFF;
}

.table-glass th {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #94A3B8;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 1rem 1.25rem;
    text-align: left;
}

.table-glass td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    vertical-align: middle;
}

.table-glass tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* 3. Checkout Section */
.checkout-container {
    padding-top: 110px;
    padding-bottom: 60px;
}

.payment-method-item {
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.payment-method-item:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

.payment-method-item.active {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.05) !important;
}

body.dark-theme .payment-method-item {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

body.dark-theme .payment-method-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body.dark-theme .payment-method-item.active {
    border-color: #00E5FF !important;
    background: rgba(0, 229, 255, 0.05) !important;
}

/* Pricing ribbon tag */
.premium-ribbon-tag {
    background: #00E5FF;
    color: #020617;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Premium cycle toggle on Checkout page */
.premium-toggle-track {
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 12px;
    padding: 4px;
}

body.dark-theme .premium-toggle-track {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.premium-toggle-btn {
    border: none !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #475569 !important;
    font-weight: 600 !important;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.premium-toggle-btn:hover {
    color: #0f172a !important;
}

body.dark-theme .premium-toggle-btn {
    color: #94a3b8 !important;
}

body.dark-theme .premium-toggle-btn:hover {
    color: #ffffff !important;
}

.premium-toggle-btn.active {
    background: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2) !important;
}

body.dark-theme .premium-toggle-btn.active {
    background: #00E5FF !important;
    color: #020617 !important;
    box-shadow: 0 4px 12px rgba(0, 229, 255, 0.25) !important;
}

/* Labels and Helper Texts */
label {
    color: #475569 !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
}

body.dark-theme label {
    color: #E2E8F0 !important;
}

.text-light-muted {
    color: #64748b !important;
}

body.dark-theme .text-light-muted {
    color: #94A3B8 !important;
}

.invalid-feedback {
    color: #F87171 !important;
    font-size: 0.825rem;
    margin-top: 0.35rem;
}

/* Custom Checkbox/Radio */
.custom-control-label {
    color: #475569 !important;
    cursor: pointer;
}

body.dark-theme .custom-control-label {
    color: #E2E8F0 !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: #3b82f6 !important;
    background-color: #3b82f6 !important;
}

body.dark-theme .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #00E5FF !important;
    background-color: #00E5FF !important;
}

/* Custom Progress Bars */
.progress-glass {
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 50px !important;
    height: 8px !important;
    overflow: hidden;
}

.progress-glass-bar {
    background: linear-gradient(90deg, #1D4ED8 0%, #00E5FF 100%) !important;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    /* Global Card Padding on Mobile */
    .glass-card .card-body {
        padding: 1.25rem !important;
    }
    .glass-card .card-header, .glass-card .card-footer {
        padding: 1.25rem !important;
    }

    /* 1. Auth Section Mobile Overrides */
    .auth-section {
        padding: 1.5rem 0.75rem !important;
        min-height: calc(100vh - 70px);
    }
    .auth-card {
        border-radius: 20px !important;
    }
    .auth-form-panel {
        padding: 1.5rem !important;
    }
    .social-login-grid {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    .btn-social-glass {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* 2. Profile Section Mobile Overrides */
    .profile-container {
        padding-top: 90px !important;
        padding-bottom: 30px !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    .profile-sidebar {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 1.25rem !important;
        background: rgba(255, 255, 255, 0.01);
    }
    .profile-nav {
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding-bottom: 10px !important;
        gap: 0.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide standard scrollbar for clean look */
    }
    .profile-nav::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Webkit browsers */
    }
    .profile-nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        display: inline-flex !important;
        flex-shrink: 0;
    }
    .user-avatar-upload-wrapper {
        margin-bottom: 1.5rem;
    }
    .user-avatar-preview-box {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    /* 3. Checkout Section Mobile Overrides */
    .checkout-container {
        padding-top: 90px !important;
        padding-bottom: 40px !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    .payment-method-item {
        padding: 1rem !important;
    }
    
    /* Table modifications for mobile */
    .table-glass th, .table-glass td {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.825rem !important;
    }
}

@media (max-width: 576px) {
    /* Extra small screen adjustments */
    .auth-form-panel {
        padding: 1.25rem !important;
    }
    .btn-glass-primary, .btn-glass-secondary, .btn-glass-danger {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }
    .form-control-glass {
        padding: 0.65rem 1rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }
}

/* Custom Glassmorphic Confirm & Alert Modal */
.custom-confirm-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(2, 6, 23, 0.4) !important;
    backdrop-filter: blur(0px) !important;
    -webkit-backdrop-filter: blur(0px) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.custom-confirm-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.custom-confirm-card {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 24px !important;
    padding: 2.25rem 2rem !important;
    width: 90% !important;
    max-width: 420px !important;
    text-align: center !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1) !important;
    transform: scale(0.9) translateY(20px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.dark-theme .custom-confirm-card {
    background: rgba(15, 23, 42, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.custom-confirm-overlay.active .custom-confirm-card {
    transform: scale(1) translateY(0) !important;
}

.custom-confirm-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: rgba(245, 158, 11, 0.1) !important;
    border: 2px solid rgba(245, 158, 11, 0.2) !important;
    color: #F59E0B !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.75rem !important;
    margin: 0 auto 1.5rem !important;
}

.custom-confirm-icon.info {
    background: rgba(0, 229, 255, 0.1) !important;
    border: 2px solid rgba(0, 229, 255, 0.2) !important;
    color: #00E5FF !important;
}

.custom-confirm-title {
    color: #0f172a !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.35rem !important;
    margin-bottom: 0.75rem !important;
}

body.dark-theme .custom-confirm-title {
    color: #FFFFFF !important;
}

.custom-confirm-text {
    color: #475569 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
}

body.dark-theme .custom-confirm-text {
    color: #94A3B8 !important;
}

.custom-confirm-buttons {
    display: flex !important;
    gap: 0.75rem !important;
    justify-content: center !important;
}

.btn-confirm-cancel, .btn-confirm-ok {
    padding: 0.75rem 1.75rem !important;
    border-radius: 12px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex: 1 !important;
}

.btn-confirm-cancel {
    background: transparent !important;
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
}

.btn-confirm-cancel:hover {
    background: #f1f5f9 !important;
}

body.dark-theme .btn-confirm-cancel {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #E2E8F0 !important;
}

body.dark-theme .btn-confirm-cancel:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.btn-confirm-ok {
    background: linear-gradient(135deg, #1D4ED8 0%, #00E5FF 100%) !important;
    border: none !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2) !important;
}

.btn-confirm-ok:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35) !important;
}

/* Logo Theme-Matching Filter */
.logo-inner, 
.auth-logo-panel img, 
.auth-form-panel img,
nav.navbar a.navbar-brand img,
.navbar-brand img {
    filter: invert(1) !important;
    transition: filter 0.3s ease;
}

body.dark-theme .logo-inner,
body.dark-theme .auth-logo-panel img,
body.dark-theme .auth-form-panel img,
body.dark-theme nav.navbar a.navbar-brand img,
body.dark-theme .navbar-brand img {
    filter: none !important;
}
