/* ─────────────────────────────────────────────────────────────────
 * User Portal – Component Styles
 * All colors reference semantic tokens from theme_bridge.css
 * Works correctly in BOTH light and dark mode.
 * ─────────────────────────────────────────────────────────────────*/

/* ── Glass Card ──────────────────────────────────────────────── */
.user-glass-card {
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    padding: 3rem;
    margin-bottom: 3rem;
}

.user-glass-card:hover {
    border-color: rgba(245, 197, 24, 0.35);
    box-shadow: var(--shadow-lg), 0 0 24px var(--highlight-glow);
}

/* ── Portal Avatar (edit view) ──────────────────────────────── */
.profile-avatar-portal {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    cursor: pointer;
    border: 3px solid var(--border-default);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--surface-inset);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-portal:hover {
    border-color: var(--highlight);
    box-shadow: 0 0 20px var(--highlight-glow);
}

.profile-avatar-portal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.profile-avatar-portal img.loaded {
    opacity: 1;
}

.profile-avatar-portal .avatar-placeholder {
    font-size: 3rem;
    color: var(--text-disabled);
    position: absolute;
}

/* ── User Nav Glass ─────────────────────────────────────────── */
.user-nav-glass {
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
}

/* ── Profile Header (public profile) ───────────────────────── */
.profile-header {
    position: relative;
    padding-top: 250px;
    margin-bottom: 30px;
    background-color: var(--surface-page);
}

.profile-header-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.5);
    z-index: 0;
}

.profile-header .container {
    position: relative;
    z-index: 10;
}

/* ── Profile Content ────────────────────────────────────────── */
.profile-content {
    background: var(--surface-page);
    min-height: 500px;
    padding-bottom: 40px;
}

/* ── Profile Box ────────────────────────────────────────────── */
.profile-box {
    background: var(--surface-raised);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

/* ── Profile Avatar (public view) ──────────────────────────── */
.profile-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 0 0 5px var(--surface-page), var(--shadow-md);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar:hover .pa-edit {
    opacity: 1;
}


/* ── Visibility Toggle (Switch Fix) ─────────────────────────── */
.premium-switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(245, 197, 24, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    margin-top: 1.5rem;
    width: 300px;
    /* Fixed width to prevent shifting */
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.premium-switch .form-check-input {
    width: 3.5rem !important;
    height: 1.75rem !important;
    margin: 0 !important;
    cursor: pointer;
    background-color: var(--surface-inset);
    border-color: var(--border-default);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255, 0.25)'/%3e%3c/svg%3e");
}

.premium-switch .form-check-input:checked {
    background-color: var(--highlight);
    border-color: var(--highlight);
}

.premium-switch .form-check-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* ── Centering Helpers ───────────────────────────────────────── */
.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content-center .hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .user-glass-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-5px);
    }

    15% {
        opacity: 1;
        transform: translateX(0);
    }

    85% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(5px);
    }
}

.fadeInOut {
    animation: fadeInOut 2s ease forwards;
}

/* ==========================================================================
   Reorganized from main.css
   ========================================================================== */

/* Matches .home-page-wrapper so the portal column lines up with the home /
   gallery layout (same max-width, centring and side padding). */
#user-portal .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0 !important;
    box-sizing: border-box;
}

.portal-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
}

.portal-title .text-warning {
    color: var(--accent-primary) !important;
}

.btn-hero-connect {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-glow);
    color: var(--accent-primary) !important;
    border: 1px solid var(--accent-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.btn-hero-connect:hover {
    background: var(--accent-primary);
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--accent-glow);
}

.form-group label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    background: var(--surface-inset) !important;
    border: 1px solid var(--border-strong) !important;
    color: var(--text-primary) !important;
    border-radius: 12px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: var(--border-focus) !important;
    box-shadow: 0 0 0 3px var(--accent-glow) !important;
    background: var(--surface-inset) !important;
}

.btn-portal-primary {
    background: var(--accent-primary) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    padding: 12px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
}

.btn-portal-primary:hover {
    background: var(--accent-primary) !important;
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow) !important;
}

.pa-edit-portal {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: #f5c518;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-item-link {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 0.85rem;
    color: var(--text-muted) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-link:hover {
    color: var(--text-primary) !important;
    background: var(--surface-overlay);
}

.nav-item-link.active {
    color: var(--highlight) !important;
    background: var(--highlight-glow);
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
    margin: 0 5px;
}

.nav-status-dot {
    width: 8px;
    height: 8px;
    background: #f5c518;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 197, 24, 0.5);
}

/* Dark mode form/social now handled by semantic tokens â€” no overrides needed */

.ph-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ph-tabs {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px 12px 0 0;
    padding: 10px 20px 0;
}

.bah-tabs {
    margin: 0;
}

.pre-tabs {
    border-bottom: 1px solid #333;
    display: flex;
    gap: 10px;
}

.pre-tabs .nav-item {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 0.85rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pre-tabs .nav-link {
    color: #aaa;
    border: none;
    background: transparent;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.pre-tabs .nav-link:hover {
    color: #fff;
}

.pre-tabs .nav-link.active {
    color: #FFD382;
    background: transparent;
}

.pre-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #FFD382;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 10px rgba(255, 211, 130, 0.5);
}

.h2-heading {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.h2-heading i {
    color: #FFD382;
}

.show-profile-avatar {
    position: relative;
}

.pa-edit {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: #FFD382;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.prelabel {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* .form-control base is now handled by the BS5 bridge variables above */

.btn-primary {
    background: #FFD382;
    color: #000;
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #ffc254;
    box-shadow: 0 4px 15px rgba(255, 211, 130, 0.4);
}



@media (max-width: 768px) {
    .portal-title {
        font-size: 2rem;
    }

    .skills-list {
        gap: 0.5rem;
    }

    .skill-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .nav-item-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
@media (min-width: 1024px) {
    /* Same fix the home page uses: the global .container adds padding-right: 10rem
       on desktop, which pushes the portal column left of centre. Cancel it so
       #user-portal .container (margin auto, 1100px) centres in the visible area
       between the sidebar and the right edge — identical to the gallery section. */
    .container:has(#user-portal) {
        padding-right: 0 !important;
    }

    #user-portal .container {
        max-width: 1100px !important;
        margin: 0 auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 2rem !important;
    }
}

@media (max-width: 768px) {
    #user-portal .container {
        padding-top: 2rem !important;
    }
}

/* ==========================================================================
   Extracted from user.html
   ========================================================================== */

.profile-content {
        padding-top: 2rem;
        background: transparent !important;
        position: relative;
    }

    @media (max-width: 768px) {
        .profile-content {
            padding-top: 0.5rem;
        }
    }

    /* Premium Public Profile styling */
    .profile-hero-card {
        background: var(--surface-raised);
        border: 1px solid var(--border-default);
        border-radius: 12px;
        box-shadow: var(--shadow-md);
        max-width: 650px;
        margin: 0 auto;
    }

    .profile-avatar-outer {
        position: relative;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        overflow: hidden;
        background: var(--surface-raised, #151d30);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .profile-avatar-inner {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
    }

    .profile-avatar-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: filter 0.3s ease;
    }

    .profile-meta-badge {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 8px 16px;
        font-size: 0.88rem;
        color: var(--text-muted, #94a3b8);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        backdrop-filter: blur(4px);
    }

    .btn-connect-public {
        background: linear-gradient(90deg, #0d9488 0%, #0b7a70 100%);
        border: none;
        border-radius: 12px;
        padding: 12px 30px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #fff;
        box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none !important;
    }

    .btn-connect-public:hover {
        background: linear-gradient(90deg, #0b7a70 0%, #0d9488 100%);
        box-shadow: 0 6px 20px rgba(13, 148, 136, 0.6);
        transform: translateY(-2px);
        color: #fff;
        text-decoration: none !important;
    }

    /* Privacy Lock Screen */
    .privacy-lock-card {
        padding: 5rem 2rem;
        text-align: center;
        background: rgba(20, 25, 40, 0.7);
        border-radius: 24px;
        border: 1px solid rgba(255, 64, 64, 0.2);
        box-shadow: 0 8px 32px 0 rgba(255, 64, 64, 0.05);
        backdrop-filter: blur(12px);
    }

    .lock-icon-glow {
        font-size: 4.5rem;
        background: linear-gradient(to right, #ef4444, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
        margin-bottom: 2rem;
        animation: pulseLock 2s infinite ease-in-out;
    }

    @keyframes pulseLock {

        0%,
        100% {
            transform: scale(1);
            filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
        }

        50% {
            transform: scale(1.05);
            filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.7));
        }
    }

    /* Timeline styling without hovers or animations */
    .activity-timeline-wrapper {
        position: relative;
        margin-top: 10px;
    }

    .activity-timeline-line {
        position: absolute;
        left: 133px;
        /* Aligns with node centers: 120px label + 13px (half of 26px node) */
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: #22c55e;
        opacity: 0.4;
    }

    .activity-node-inner {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 2px solid var(--surface-page);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .activity-time-label {
        width: 120px;
        flex-shrink: 0;
        color: var(--text-muted);
        font-size: 0.85rem;
    }

    .activity-text-content {
        font-size: 0.92rem;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .activity-time-label {
            width: 80px !important;
            font-size: 0.72rem;
        }

        .activity-timeline-line {
            left: 93px;
        }
    }

    /* Premium Pagination Styling matching the Mockup */
    .pagination-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .pagination-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 8px;
        background-color: rgb(27, 32, 53);
        /* Matches dark theme surface-raised / card backgrounds */
        color: var(--text-primary, #eef0f7);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }

    .pagination-btn:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .pagination-btn.active {
        background-color: #e0533c !important;
        /* Premium Warm Orange active state matching image */
        color: #fff !important;
        border-color: #e0533c !important;
    }

    .pagination-btn.disabled {
        opacity: 0.25;
        pointer-events: none;
        background-color: rgba(255, 255, 255, 0.02);
    }


/* ==========================================================================
   Extracted from user_profile.html
   ========================================================================== */

.profile-content {
        padding-top: 2rem;
        background: transparent !important;
        position: relative;
    }

    @media (max-width: 768px) {
        .profile-content {
            padding-top: 0.5rem;
        }
    }

    .profile-box-account.makeup {
        max-width: 650px;
        margin: 0 auto;
    }


/* ==========================================================================
   Extracted from user_settings.html
   ========================================================================== */

/* Additional tweaks for the new layout */
    .profile-content {
        padding-top: 2rem;
        background: transparent !important;
        position: relative;
        /* Anchor for the absolute modal */
    }

    @media (max-width: 768px) {
        .profile-content {
            padding-top: 0.5rem;
        }
    }

    .modal {
        display: none;
        z-index: 1050;
    }

    .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.7) !important;
        opacity: 1 !important;
        z-index: 1040;
    }

    @media (min-width: 769px) {
        .modal-backdrop {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            background-color: rgba(0, 0, 0, 0.4) !important;
        }
    }

    .profile-box-account.makeup {
        max-width: 650px;
        margin: 0 auto;
    }

    .profile-avatar {
        position: relative;
        cursor: pointer;
    }

    .pa-edit {
        opacity: 1 !important;
        transition: none !important;
    }

    .modal-content {
        background: var(--surface-raised);
        border: 1px solid var(--border-default);
        color: var(--text-primary);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        padding: 5px;
    }

    .modal-dialog {
        max-width: 650px;
        /* Matching the settings box width */
        margin: auto !important;
    }

    @media (max-width: 768px) {
        .modal-dialog {
            max-width: 95%;
            margin: auto !important;
        }
    }

    /* Global override for avatar btn hover */
    .login-avatar-btn,
    .login-avatar-btn:hover,
    .login-avatar-btn:focus,
    .login-avatar-btn:active {
        border-color: transparent !important;
        box-shadow: none !important;
        outline: none !important;
        transition: none !important;
    }

    .pre-tabs-hashtag .nav-link {
        color: var(--text-muted);
        font-size: 0.9rem;
        padding: 8px 15px;
        border: none;
    }

    .pre-tabs-hashtag .nav-link.active {
        color: var(--highlight);
        background: var(--highlight-glow);
    }

    .btn-primary,
    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background: var(--highlight) !important;
        color: #000 !important;
        box-shadow: none !important;
        transition: none !important;
        transform: none !important;
    }

    .avatar-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
        gap: 20px;
        padding: 25px 5px;
        justify-content: center;
    }

    .item-avatar {
        position: relative;
        cursor: pointer;
    }

    .item-avatar:hover {
        transform: none !important;
    }

    .item-avatar .checked {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--highlight);
        color: #000;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        z-index: 2;
    }

    .item-avatar.active .checked {
        display: flex;
    }

    .item-avatar.active img {
        border: 2px solid var(--highlight);
    }

    .item-avatar img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid transparent;
    }

    .btn-clear:hover {
        text-decoration: underline;
    }

    /* Appearance / Theme Selector */
    .appearance-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 10px;
    }

    .theme-card {
        cursor: pointer;
        border-radius: 12px;
        padding: 10px;
        background: var(--surface-overlay);
        border: 2px solid transparent;
        text-align: center;
        transition: all 0.2s ease;
    }

    .theme-card:hover {
        border-color: var(--border-default);
    }

    .theme-card.active {
        border-color: var(--highlight);
        background: var(--highlight-glow);
    }

    .theme-preview {
        height: 60px;
        border-radius: 6px;
        margin-bottom: 8px;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border-default);
    }

    .theme-preview.light {
        background: #ffffff;
    }

    .theme-preview.navy {
        background: rgb(34, 40, 68);
    }

    .theme-preview.dark {
        background: rgb(43, 43, 43);
    }

    .theme-name {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text-primary);
    }


/* ==========================================================================
   Extracted from user_activity.html
   ========================================================================== */

.profile-content {
        padding-top: 2rem;
        background: transparent !important;
        position: relative;
    }

    @media (max-width: 768px) {
        .profile-content {
            padding-top: 0.5rem;
        }
    }

    .profile-box-account.makeup {
        max-width: 650px;
        margin: 0 auto;
    }

    /* Timeline styles without hovers or animations */
    .activity-timeline-wrapper {
        position: relative;
        padding-left: 0;
        margin-top: 15px;
    }

    .activity-timeline-line {
        position: absolute;
        left: 133px;
        /* Aligns with node centers: 120px label + 13px (half of 26px node) */
        top: 10px;
        bottom: 10px;
        width: 2px;
        background: #22c55e;
        opacity: 0.4;
    }

    .activity-node-inner {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 2px solid var(--surface-page);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .activity-time-label {
        width: 120px;
        flex-shrink: 0;
        color: var(--text-muted);
        font-size: 0.85rem;
    }

    .activity-text-content {
        font-size: 0.92rem;
        line-height: 1.4;
    }

    @media (max-width: 768px) {
        .activity-time-label {
            width: 80px !important;
            font-size: 0.72rem;
        }

        .activity-timeline-line {
            left: 93px;
        }
    }

    /* Premium Pagination Styling matching the Mockup */
    .pagination-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .pagination-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 8px;
        background-color: rgb(27, 32, 53);
        /* Matches dark theme surface-raised / card backgrounds */
        color: var(--text-primary, #eef0f7);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }

    .pagination-btn:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #fff;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .pagination-btn.active {
        background-color: #e0533c !important;
        /* Premium Warm Orange active state matching image */
        color: #fff !important;
        border-color: #e0533c !important;
    }

    .pagination-btn.disabled {
        opacity: 0.25;
        pointer-events: none;
        background-color: rgba(255, 255, 255, 0.02);
    }
