/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* AdminLayout Scoped Styles */
[b-6gyg11k7mv] .admin-main-content {
    padding-top: 72px;
    min-height: 100vh;
    background-color: #f0f2f5;
}

/* Common Admin Container Styles */
[b-6gyg11k7mv] .admin-container {
    max-width: 1400px;
    margin: 76px auto 0;
    padding: 20px;
    background: #f5f5f5;
    min-height: calc(100vh - 56px);
}

[b-6gyg11k7mv] .admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

[b-6gyg11k7mv] .header-left {
    display: flex;
    align-items: center;
}

[b-6gyg11k7mv] .header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

[b-6gyg11k7mv] .admin-header h1 {
    margin: 0;
    color: #1877F2;
    font-size: 28px;
}

[b-6gyg11k7mv] .admin-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* /Components/Layout/AdminLayoutNav.razor.rz.scp.css */
/* AdminLayoutNav Scoped Styles */
.admin-loading[b-r25415cj3l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f8f9fa;
}

.admin-loading .spinner[b-r25415cj3l] {
    width: 50px;
    height: 50px;
    border: 4px solid #e4e6eb;
    border-top-color: #1877f2;
    border-radius: 50%;
    animation: spin-b-r25415cj3l 1s linear infinite;
}

@keyframes spin-b-r25415cj3l {
    to { transform: rotate(360deg); }
}

.admin-loading p[b-r25415cj3l] {
    margin-top: 16px;
    color: #65676b;
    font-size: 16px;
}

.unauthorized-container[b-r25415cj3l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
}

.unauthorized-container h2[b-r25415cj3l] {
    font-size: 32px;
    color: #1c1e21;
    margin-bottom: 12px;
}

.unauthorized-container p[b-r25415cj3l] {
    font-size: 16px;
    color: #65676b;
}

.top-nav[b-r25415cj3l] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
}

.nav-left[b-r25415cj3l] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-center[b-r25415cj3l] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-right[b-r25415cj3l] {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.logo[b-r25415cj3l] {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    text-decoration: none;
}

.logo:hover[b-r25415cj3l] {
    opacity: 0.8;
}

.icon-btn[b-r25415cj3l] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #e4e6eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    padding: 0;
    overflow: hidden;
}

.icon-btn:hover[b-r25415cj3l] {
    background-color: #d8dadf;
}

.profile-picture[b-r25415cj3l] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-dropdown[b-r25415cj3l] {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

.profile-dropdown.show[b-r25415cj3l] {
    display: flex;
}

.profile-item[b-r25415cj3l], .dropdown-item[b-r25415cj3l] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-item:hover[b-r25415cj3l], .dropdown-item:hover[b-r25415cj3l] {
    background-color: #f0f2f5;
}

.profile-item[b-r25415cj3l] {
    font-weight: 600;
}

.dropdown-profile-picture[b-r25415cj3l] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown hr[b-r25415cj3l] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 8px 0;
}

.icon[b-r25415cj3l] {
    font-size: 20px;
}

.admin-link[b-r25415cj3l] {
    color: #1877f2;
    font-weight: 600;
}

.admin-menu-btn[b-r25415cj3l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #65676b;
    transition: background-color 0.2s;
    gap: 4px;
    min-width: 80px;
}

.admin-menu-btn:hover[b-r25415cj3l] {
    background-color: #f0f2f5;
}

.admin-menu-btn .icon[b-r25415cj3l] {
    font-size: 24px;
}

.admin-menu-btn .menu-label[b-r25415cj3l] {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Global App Layout with Animated Background */
.app-layout[b-bxrigl36a4] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow-x: hidden;
}

.animated-background[b-bxrigl36a4] {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.07) 0%, transparent 50%);
    animation: float-b-bxrigl36a4 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float-b-bxrigl36a4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.page[b-bxrigl36a4] {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

main[b-bxrigl36a4] {
    flex: 1;
}

.sidebar[b-bxrigl36a4] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-bxrigl36a4] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-bxrigl36a4]  a, .top-row[b-bxrigl36a4]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-bxrigl36a4]  a:hover, .top-row[b-bxrigl36a4]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-bxrigl36a4]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-bxrigl36a4] {
        justify-content: space-between;
    }

    .top-row[b-bxrigl36a4]  a, .top-row[b-bxrigl36a4]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-bxrigl36a4] {
        flex-direction: row;
    }

    .sidebar[b-bxrigl36a4] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-bxrigl36a4] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-bxrigl36a4]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-bxrigl36a4], article[b-bxrigl36a4] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-bxrigl36a4] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-bxrigl36a4] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-zsjzf935y6] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-zsjzf935y6] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-zsjzf935y6] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-zsjzf935y6] {
    font-size: 1.1rem;
}

.bi[b-zsjzf935y6] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-zsjzf935y6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-zsjzf935y6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-zsjzf935y6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-zsjzf935y6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-zsjzf935y6] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-zsjzf935y6] {
        padding-bottom: 1rem;
    }

    .nav-item[b-zsjzf935y6]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-zsjzf935y6]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-zsjzf935y6]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-zsjzf935y6] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-zsjzf935y6] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-zsjzf935y6] {
        display: none;
    }

    .nav-scrollable[b-zsjzf935y6] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/UserLayout.razor.rz.scp.css */
/* UserLayout Scoped Styles */
[b-8jt7tfmm04] .user-main-content {
    padding-top: 72px;
    min-height: 100vh;
}
/* /Components/Layout/UserLayoutNav.razor.rz.scp.css */
/* UserLayoutNav Scoped Styles */
.user-loading[b-nh1wk9yksd] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-size: 18px;
}

.spinner[b-nh1wk9yksd] {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    width: 40px;
    height: 40px;
    animation: spin-b-nh1wk9yksd 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-nh1wk9yksd {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.unauthorized-container[b-nh1wk9yksd] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: white;
    padding: 20px;
}

.unauthorized-container h2[b-nh1wk9yksd] {
    font-size: 32px;
    margin-bottom: 16px;
}

.unauthorized-container p[b-nh1wk9yksd] {
    font-size: 18px;
    margin-bottom: 24px;
}

.top-nav[b-nh1wk9yksd] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 56px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
    box-sizing: border-box;
    overflow-x: hidden;
}

.nav-left[b-nh1wk9yksd] {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-center[b-nh1wk9yksd] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    max-width: 600px;
}

.nav-right[b-nh1wk9yksd] {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.logo[b-nh1wk9yksd] {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    text-decoration: none;
}

.nav-icon-link[b-nh1wk9yksd] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 48px;
    border-radius: 8px;
    color: #65676b;
    text-decoration: none;
    position: relative;
    transition: background-color 0.2s;
}

/* Mobile-first approach - apply mobile styles earlier */
@media (max-width: 768px) {
    .top-nav[b-nh1wk9yksd] {
        padding: 0 8px !important;
    }
    
    .nav-left[b-nh1wk9yksd] {
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }
    
    .nav-center[b-nh1wk9yksd] {
        flex: 1 !important;
        gap: 0 !important;
        min-width: 0 !important;
    }
    
    .nav-right[b-nh1wk9yksd] {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        display: flex !important;
        justify-content: flex-end !important;
    }
    
    .nav-icon-link[b-nh1wk9yksd] {
        width: 56px !important;
        height: 40px !important;
    }
    
    .nav-icon[b-nh1wk9yksd] {
        width: 22px !important;
        height: 22px !important;
    }
    
    .logo[b-nh1wk9yksd] {
        font-size: 22px !important;
    }
    
    .icon-btn[b-nh1wk9yksd] {
        width: 36px !important;
        height: 36px !important;
    }
    
    .profile-picture[b-nh1wk9yksd] {
        width: 36px !important;
        height: 36px !important;
    }
    
    .icon[b-nh1wk9yksd] {
        font-size: 18px !important;
    }
}

.nav-icon-link:hover[b-nh1wk9yksd] {
    background-color: #f0f2f5;
}

.nav-icon-link.active[b-nh1wk9yksd] {
    color: #1877f2;
}

.nav-icon-link.active[b-nh1wk9yksd]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #1877f2;
    border-radius: 3px 3px 0 0;
}

.nav-icon[b-nh1wk9yksd] {
    width: 28px;
    height: 28px;
}

.icon-btn[b-nh1wk9yksd] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #e4e6eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    padding: 0;
    overflow: hidden;
}

.icon-btn:hover[b-nh1wk9yksd] {
    background-color: #d8dadf;
}

.profile-picture[b-nh1wk9yksd] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-dropdown[b-nh1wk9yksd] {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

.profile-dropdown.show[b-nh1wk9yksd] {
    display: flex;
}

.profile-item[b-nh1wk9yksd], .dropdown-item[b-nh1wk9yksd] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-item:hover[b-nh1wk9yksd], .dropdown-item:hover[b-nh1wk9yksd] {
    background-color: #f0f2f5;
}

.profile-item[b-nh1wk9yksd] {
    font-weight: 600;
}

.dropdown-profile-picture[b-nh1wk9yksd] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown hr[b-nh1wk9yksd] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 8px 0;
}

.icon[b-nh1wk9yksd] {
    font-size: 20px;
}

.profile-icon[b-nh1wk9yksd] {
    font-size: 36px;
    display: inline-block;
}

.menu-icon[b-nh1wk9yksd] {
    font-size: 18px;
    width: 24px;
    display: inline-block;
    text-align: center;
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .top-nav[b-nh1wk9yksd] {
        padding: 0 8px !important;
        gap: 4px !important;
    }

    .nav-left[b-nh1wk9yksd] {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        margin-right: 4px !important;
    }

    .logo[b-nh1wk9yksd] {
        font-size: 22px !important;
    }

    .nav-center[b-nh1wk9yksd] {
        flex: 0 1 auto !important;
        gap: 0 !important;
        justify-content: center !important;
        min-width: 0 !important;
        max-width: none !important;
    }

    .nav-icon-link[b-nh1wk9yksd] {
        width: 48px !important;
        height: 40px !important;
        border-radius: 6px !important;
        padding: 0 !important;
    }

    .nav-icon[b-nh1wk9yksd] {
        width: 20px !important;
        height: 20px !important;
    }

    .nav-right[b-nh1wk9yksd] {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        margin-left: 4px !important;
        
    }

    .icon-btn[b-nh1wk9yksd] {
        width: 36px !important;
        height: 36px !important;
    }

    .profile-picture[b-nh1wk9yksd] {
        width: 36px !important;
        height: 36px !important;
    }

    .profile-dropdown[b-nh1wk9yksd] {
        right: -4px !important;
    }
}

@media (max-width: 360px) {
    .top-nav[b-nh1wk9yksd] {
        padding: 0 6px !important;
        gap: 2px !important;
    }

    .logo[b-nh1wk9yksd] {
        font-size: 20px !important;
    }

    .nav-icon-link[b-nh1wk9yksd] {
        width: 44px !important;
    }

    .nav-icon[b-nh1wk9yksd] {
        width: 18px !important;
        height: 18px !important;
    }

    .nav-left[b-nh1wk9yksd] {
        margin-right: 2px !important;
    }

    .nav-right[b-nh1wk9yksd] {
        margin-left: 2px !important;
    }
}
/* /Components/Pages/Admin/AuditLog.razor.rz.scp.css */
/* Page-specific styles for Audit Log */
.filters-section[b-0e6mrght23] {
    margin-bottom: 2rem;
}

.filters-section h3[b-0e6mrght23] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.filters-grid[b-0e6mrght23] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: end;
}

.filter-group[b-0e6mrght23] {
    display: flex;
    flex-direction: column;
}

.filter-group label[b-0e6mrght23] {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #555;
}

.filter-group select[b-0e6mrght23],
.filter-group input[b-0e6mrght23] {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
}

.btn-clear-filters[b-0e6mrght23] {
    padding: 0.5rem 1.5rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-clear-filters:hover[b-0e6mrght23] {
    background: #5a6268;
}

.audit-table-container[b-0e6mrght23] {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.audit-table[b-0e6mrght23] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.audit-table thead[b-0e6mrght23] {
    background: #f8f9fa;
}

.audit-table th[b-0e6mrght23] {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.audit-table td[b-0e6mrght23] {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.audit-table tbody tr:hover[b-0e6mrght23] {
    background: #f8f9fa;
}

.date-cell[b-0e6mrght23] {
    white-space: nowrap;
}

.date-cell .date[b-0e6mrght23] {
    font-weight: 600;
    color: #333;
}

.date-cell .time[b-0e6mrght23] {
    color: #666;
    font-size: 0.9rem;
}

.admin-cell strong[b-0e6mrght23],
.target-cell strong[b-0e6mrght23] {
    color: #333;
}

.changes-cell[b-0e6mrght23] {
    min-width: 200px;
}

.change-row[b-0e6mrght23] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.old-value[b-0e6mrght23] {
    padding: 2px 8px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    font-size: 0.9rem;
}

.new-value[b-0e6mrght23] {
    padding: 2px 8px;
    background: #d4edda;
    color: #155724;
    border-radius: 4px;
    font-size: 0.9rem;
}

.arrow[b-0e6mrght23] {
    color: #666;
}

.remarks-cell[b-0e6mrght23] {
    max-width: 300px;
}

.remarks-text[b-0e6mrght23] {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #555;
}

.ip-cell[b-0e6mrght23] {
    font-family: monospace;
    color: #666;
}

.action-badge[b-0e6mrght23] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.action-verified[b-0e6mrght23] {
    background: #d4edda;
    color: #155724;
}

.action-unverified[b-0e6mrght23] {
    background: #fff3cd;
    color: #856404;
}

.action-activated[b-0e6mrght23] {
    background: #cfe2ff;
    color: #084298;
}

.action-deactivated[b-0e6mrght23] {
    background: #f8d7da;
    color: #721c24;
}

.action-rolechanged[b-0e6mrght23] {
    background: #e7d4f5;
    color: #6f42c1;
}

.pagination[b-0e6mrght23] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.pagination-info[b-0e6mrght23] {
    color: #666;
    font-size: 0.95rem;
}

.pagination-controls[b-0e6mrght23] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-page[b-0e6mrght23] {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-page:hover:not(:disabled)[b-0e6mrght23] {
    background: #f8f9fa;
    border-color: #1877f2;
}

.btn-page:disabled[b-0e6mrght23] {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-indicator[b-0e6mrght23] {
    color: #666;
    font-size: 0.95rem;
    padding: 0 1rem;
}

.error-message[b-0e6mrght23] {
    padding: 1rem;
    background: #f8d7da;
    color: #721c24;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.no-results[b-0e6mrght23] {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.loading[b-0e6mrght23] {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.spinner[b-0e6mrght23] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1877f2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-0e6mrght23 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-0e6mrght23 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.unauthorized[b-0e6mrght23] {
    text-align: center;
    padding: 3rem;
}

.unauthorized h2[b-0e6mrght23] {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.btn-primary[b-0e6mrght23] {
    padding: 0.75rem 1.5rem;
    background: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-primary:hover[b-0e6mrght23] {
    background: #166fe5;
}
/* /Components/Pages/Admin/Index.razor.rz.scp.css */
/* Top Navigation Bar */
.top-nav[b-loawqrywb6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
}

.nav-left[b-loawqrywb6] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo[b-loawqrywb6] {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    cursor: pointer;
}

.nav-right[b-loawqrywb6] {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.icon-btn[b-loawqrywb6] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.icon-btn:hover[b-loawqrywb6] {
    background-color: #d8dadf;
}

.icon-btn .icon[b-loawqrywb6] {
    font-size: 20px;
}

.icon-btn .profile-picture[b-loawqrywb6] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown[b-loawqrywb6] {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-profile-picture[b-loawqrywb6] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-item[b-loawqrywb6] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 600;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-item:hover[b-loawqrywb6] {
    background-color: #f0f2f5;
}

.profile-dropdown hr[b-loawqrywb6] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 8px 0;
}

.dropdown-item[b-loawqrywb6] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover[b-loawqrywb6] {
    background-color: #f0f2f5;
}

.dropdown-item.admin-link[b-loawqrywb6] {
    color: #1877F2;
    font-weight: 600;
}

.dropdown-item.admin-link:hover[b-loawqrywb6] {
    background-color: #e7f3ff;
}

.admin-container[b-loawqrywb6] {
    max-width: 1400px;
    margin: 76px auto 0;
    padding: 20px;
    background: #f5f5f5;
    min-height: calc(100vh - 56px);
}

.admin-header[b-loawqrywb6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.header-left[b-loawqrywb6] {
    display: flex;
    align-items: center;
}

.header-actions[b-loawqrywb6] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-header h1[b-loawqrywb6] {
    margin: 0;
    color: #1877F2;
    font-size: 28px;
}

.btn-audit-log[b-loawqrywb6] {
    background: #1877F2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-audit-log:hover[b-loawqrywb6] {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(24,119,242,0.3);
}

.btn-back[b-loawqrywb6] {
    background: #f0f2f5;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}

.btn-back:hover[b-loawqrywb6] {
    background: #e4e6eb;
}

.admin-content[b-loawqrywb6] {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-section[b-loawqrywb6] {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.search-input[b-loawqrywb6] {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.search-input:focus[b-loawqrywb6] {
    outline: none;
    border-color: #1877F2;
}

.btn-search[b-loawqrywb6] {
    background: #1877F2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-search:hover[b-loawqrywb6] {
    background: #166fe5;
}

.users-table[b-loawqrywb6] {
    overflow-x: auto;
}

.users-table table[b-loawqrywb6] {
    width: 100%;
    border-collapse: collapse;
}

.users-table th[b-loawqrywb6] {
    background: #f0f2f5;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.users-table td[b-loawqrywb6] {
    padding: 15px;
    border-bottom: 1px solid #f0f2f5;
}

.users-table tr:hover[b-loawqrywb6] {
    background: #f9f9f9;
}

.inactive-user[b-loawqrywb6] {
    opacity: 0.6;
}

.user-avatar[b-loawqrywb6] {
    position: relative;
    width: 50px;
    height: 50px;
}

.user-avatar img[b-loawqrywb6] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder[b-loawqrywb6] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.verified-badge-small[b-loawqrywb6] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #1877F2;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid white;
}

.username-cell[b-loawqrywb6] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nickname[b-loawqrywb6] {
    color: #888;
    font-size: 13px;
}

.status-badge[b-loawqrywb6] {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active[b-loawqrywb6] {
    background: #d4edda;
    color: #155724;
}

.status-inactive[b-loawqrywb6] {
    background: #f8d7da;
    color: #721c24;
}

.toggle-switch[b-loawqrywb6] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input[b-loawqrywb6] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-loawqrywb6] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.toggle-slider[b-loawqrywb6]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider[b-loawqrywb6] {
    background-color: #1877F2;
}

input:checked + .toggle-slider[b-loawqrywb6]:before {
    transform: translateX(24px);
}

.role-select[b-loawqrywb6] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    background: white;
}

.role-select:focus[b-loawqrywb6] {
    outline: none;
    border-color: #1877F2;
}

.btn-action[b-loawqrywb6] {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-toggle[b-loawqrywb6] {
    background: #f0f2f5;
    color: #333;
}

.btn-toggle:hover[b-loawqrywb6] {
    background: #e4e6eb;
}

.btn-reset-password[b-loawqrywb6] {
    background: #fff3cd;
    color: #856404;
}

.btn-reset-password:hover[b-loawqrywb6] {
    background: #ffeaa0;
}

.btn-edit-credentials[b-loawqrywb6] {
    background: #cfe2ff;
    color: #084298;
}

.btn-edit-credentials:hover[b-loawqrywb6] {
    background: #b6d4fe;
}

.action-buttons[b-loawqrywb6] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.admin-protected[b-loawqrywb6] {
    color: #1877F2;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    display: inline-block;
}

.error-message[b-loawqrywb6] {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

.success-message[b-loawqrywb6] {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.loading[b-loawqrywb6] {
    text-align: center;
    padding: 60px 20px;
}

.spinner[b-loawqrywb6] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1877F2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-loawqrywb6 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-loawqrywb6 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.unauthorized[b-loawqrywb6] {
    background: white;
    border-radius: 10px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.unauthorized h2[b-loawqrywb6] {
    color: #e74c3c;
    margin-bottom: 15px;
}

.unauthorized p[b-loawqrywb6] {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.btn-primary[b-loawqrywb6] {
    background: #1877F2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover[b-loawqrywb6] {
    background: #166fe5;
}

.no-results[b-loawqrywb6] {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

@media (max-width: 768px) {
    .admin-container[b-loawqrywb6] {
        padding: 10px;
    }

    .admin-header[b-loawqrywb6] {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .users-table[b-loawqrywb6] {
        font-size: 14px;
    }

    .users-table th[b-loawqrywb6],
    .users-table td[b-loawqrywb6] {
        padding: 10px 5px;
    }

    .search-section[b-loawqrywb6] {
        flex-direction: column;
    }
}

/* Modal Styles */
.modal-overlay[b-loawqrywb6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-loawqrywb6 0.2s;
}

@keyframes fadeIn-b-loawqrywb6 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content[b-loawqrywb6] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    animation: slideUp-b-loawqrywb6 0.3s;
}

@keyframes slideUp-b-loawqrywb6 {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-loawqrywb6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e4e6eb;
}

.modal-header h3[b-loawqrywb6] {
    margin: 0;
    color: #1877F2;
    font-size: 20px;
}

.modal-close[b-loawqrywb6] {
    background: none;
    border: none;
    font-size: 32px;
    color: #65676b;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover[b-loawqrywb6] {
    background: #f0f2f5;
}

.modal-body[b-loawqrywb6] {
    padding: 24px;
}

.edit-field[b-loawqrywb6] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-label[b-loawqrywb6] {
    display: block;
    font-weight: 600;
    color: #333;
}

.remarks-input[b-loawqrywb6] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
}

.remarks-input:focus[b-loawqrywb6] {
    outline: none;
    border-color: #1877F2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.modal-user-info[b-loawqrywb6] {
    background: #f0f2f5;
    padding: 12px 16px;
    border-radius: 8px;
    color: #65676b;
    line-height: 1.6;
    margin: 0;
}

.modal-user-info strong[b-loawqrywb6] {
    color: #333;
}

.modal-footer[b-loawqrywb6] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e4e6eb;
}

.btn-cancel[b-loawqrywb6] {
    background: #e4e6eb;
    color: #333;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-cancel:hover[b-loawqrywb6] {
    background: #d8dadf;
}

.btn-confirm[b-loawqrywb6] {
    background: #1877F2;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-confirm:hover[b-loawqrywb6] {
    background: #166fe5;
}

/* User Logs Modal Styles */
.user-logs-modal[b-loawqrywb6] {
    max-width: 800px;
}

.user-logs-body[b-loawqrywb6] {
    max-height: 600px;
    overflow-y: auto;
}

.user-logs-list[b-loawqrywb6] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.log-entry[b-loawqrywb6] {
    border: 1px solid #e4e6eb;
    border-radius: 8px;
    padding: 16px;
    background: #f8f9fa;
    transition: all 0.2s;
}

.log-entry:hover[b-loawqrywb6] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.log-header[b-loawqrywb6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e6eb;
}

.log-date[b-loawqrywb6] {
    font-size: 13px;
    color: #65676b;
    font-weight: 600;
}

.log-badge[b-loawqrywb6] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.log-badge-verified[b-loawqrywb6] {
    background: #d4edda;
    color: #155724;
}

.log-badge-unverified[b-loawqrywb6] {
    background: #fff3cd;
    color: #856404;
}

.log-badge-activated[b-loawqrywb6] {
    background: #cfe2ff;
    color: #084298;
}

.log-badge-deactivated[b-loawqrywb6] {
    background: #f8d7da;
    color: #721c24;
}

.log-badge-rolechanged[b-loawqrywb6] {
    background: #e7d4f5;
    color: #6f42c1;
}

.log-details[b-loawqrywb6] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-row[b-loawqrywb6] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.log-row strong[b-loawqrywb6] {
    color: #1877F2;
    min-width: 80px;
}

.old-value[b-loawqrywb6] {
    color: #721c24;
    background: #f8d7da;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.new-value[b-loawqrywb6] {
    color: #155724;
    background: #d4edda;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.arrow[b-loawqrywb6] {
    color: #65676b;
    font-weight: bold;
}

.username-cell:hover[b-loawqrywb6] {
    color: #1877F2;
    text-decoration: underline;
}

.btn-confirm:disabled[b-loawqrywb6] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Pages/Admin/ManageInterests.razor.rz.scp.css */
/* Page-specific styles for Interests */
.tabs[b-zx6c7lsfve] {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn[b-zx6c7lsfve] {
    padding: 12px 24px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab-btn:hover[b-zx6c7lsfve] {
    color: #333;
}

.tab-btn.active[b-zx6c7lsfve] {
    color: #007bff;
    border-bottom-color: #007bff;
}

.table-container[b-zx6c7lsfve] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

table[b-zx6c7lsfve] {
    width: 100%;
    border-collapse: collapse;
}

thead[b-zx6c7lsfve] {
    background-color: #f8f9fa;
}

th[b-zx6c7lsfve] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

td[b-zx6c7lsfve] {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
}

tr:hover[b-zx6c7lsfve] {
    background-color: #f8f9fa;
}

.status-badge[b-zx6c7lsfve] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.status-active[b-zx6c7lsfve] {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive[b-zx6c7lsfve] {
    background-color: #f8d7da;
    color: #721c24;
}
/* /Components/Pages/Admin/ManageRoles.razor.rz.scp.css */
.admin-container[b-8kdmtmf0qy] {
    padding: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.admin-header[b-8kdmtmf0qy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-header h1[b-8kdmtmf0qy] {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-primary[b-8kdmtmf0qy] {
    padding: 10px 20px;
    background: #1877F2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover[b-8kdmtmf0qy] {
    background: #1558c0;
}

.alert-success[b-8kdmtmf0qy] {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.alert-error[b-8kdmtmf0qy] {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.card[b-8kdmtmf0qy] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.loading-state[b-8kdmtmf0qy], .empty-state[b-8kdmtmf0qy] {
    padding: 40px;
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}

.data-table[b-8kdmtmf0qy] {
    width: 100%;
    border-collapse: collapse;
}

.data-table th[b-8kdmtmf0qy] {
    background: #f7f8fa;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
}

.data-table td[b-8kdmtmf0qy] {
    padding: 14px 16px;
    font-size: 0.92rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.data-table tr:last-child td[b-8kdmtmf0qy] {
    border-bottom: none;
}

.permission-count[b-8kdmtmf0qy] {
    font-size: 0.85rem;
    color: #666;
}

.badge[b-8kdmtmf0qy] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-system[b-8kdmtmf0qy] {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-custom[b-8kdmtmf0qy] {
    background: #f3e5f5;
    color: #6a1b9a;
}

.action-buttons[b-8kdmtmf0qy] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-edit[b-8kdmtmf0qy] {
    padding: 6px 14px;
    background: #f0f4ff;
    color: #1877F2;
    border: 1px solid #d0dfff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-edit:hover[b-8kdmtmf0qy] {
    background: #dceaff;
}

.btn-danger[b-8kdmtmf0qy] {
    padding: 6px 14px;
    background: #fff0f0;
    color: #e53935;
    border: 1px solid #ffcdd2;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-danger:hover[b-8kdmtmf0qy] {
    background: #ffe0e0;
}
/* /Components/Pages/Admin/ManageSettings.razor.rz.scp.css */
/* Page-specific styles for Settings */
.btn[b-0ordyje0t8] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary[b-0ordyje0t8] {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover[b-0ordyje0t8] {
    background-color: #5a6268;
}

.subtitle[b-0ordyje0t8] {
    color: #666;
    font-size: 1rem;
}

.loading-spinner[b-0ordyje0t8] {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.settings-list[b-0ordyje0t8] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setting-card[b-0ordyje0t8] {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.setting-header h3[b-0ordyje0t8] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.setting-description[b-0ordyje0t8] {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.warning-text[b-0ordyje0t8] {
    display: block;
    margin-top: 0.5rem;
    color: #d97706;
    font-weight: 600;
}

.setting-content[b-0ordyje0t8] {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.setting-display[b-0ordyje0t8] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.setting-value[b-0ordyje0t8] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
}

.setting-edit-form[b-0ordyje0t8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.template-textarea[b-0ordyje0t8]
{
    width: 100% !important;
}

.form-control[b-0ordyje0t8] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 200px;
}

.setting-actions[b-0ordyje0t8] {
    display: flex;
    gap: 0.5rem;
}

.btn-edit[b-0ordyje0t8], .btn-save[b-0ordyje0t8], .btn-cancel[b-0ordyje0t8] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-edit[b-0ordyje0t8] {
    background-color: #007bff;
    color: white;
}

.btn-edit:hover[b-0ordyje0t8] {
    background-color: #0056b3;
}

.btn-save[b-0ordyje0t8] {
    background-color: #28a745;
    color: white;
}

.btn-save:hover:not(:disabled)[b-0ordyje0t8] {
    background-color: #218838;
}

.btn-save:disabled[b-0ordyje0t8] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-cancel[b-0ordyje0t8] {
    background-color: #6c757d;
    color: white;
}

.btn-cancel:hover[b-0ordyje0t8] {
    background-color: #5a6268;
}

.setting-footer[b-0ordyje0t8] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.setting-footer small[b-0ordyje0t8] {
    color: #999;
    font-size: 0.85rem;
}

.alert[b-0ordyje0t8] {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.alert-danger[b-0ordyje0t8] {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success[b-0ordyje0t8] {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Settings Sections */
.settings-section[b-0ordyje0t8] {
    margin-bottom: 3rem;
}

.section-title[b-0ordyje0t8] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e0e0e0;
}

/* File Storage Styles */
.file-storage-card[b-0ordyje0t8] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: none;
}

.file-storage-display[b-0ordyje0t8] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.storage-info[b-0ordyje0t8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row[b-0ordyje0t8] {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    align-items: center;
}

.info-label[b-0ordyje0t8] {
    font-weight: 600;
    color: #555;
}

.info-value[b-0ordyje0t8] {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.badge[b-0ordyje0t8] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success[b-0ordyje0t8] {
    background: #d4edda;
    color: #155724;
}

.badge-warning[b-0ordyje0t8] {
    background: #fff3cd;
    color: #856404;
}

.text-muted[b-0ordyje0t8] {
    color: #666;
    font-size: 0.9rem;
}

.form-text[b-0ordyje0t8] {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.file-storage-card .form-control[b-0ordyje0t8] {
    width: 100%;
    max-width: 600px;
    font-family: 'Courier New', monospace;
}

.spinner[b-0ordyje0t8] {
    width: 40px;
    height: 40px;
    border: 3px solid #e4e6eb;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-0ordyje0t8 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin-b-0ordyje0t8 {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .info-row[b-0ordyje0t8] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .info-label[b-0ordyje0t8] {
        font-size: 0.9rem;
    }
}

/* Email Template Styles */
.email-template-card[b-0ordyje0t8] {
    background: linear-gradient(135deg, #fef3e7 0%, #f8d7da 100%);
    border: none;
}

.template-variables[b-0ordyje0t8] {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.email-template-form .form-group[b-0ordyje0t8] {
    margin-bottom: 1rem;
}

.email-template-form label[b-0ordyje0t8] {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.template-textarea[b-0ordyje0t8] {
    width: 100% !important;
    max-width: 1200px;
    min-width: 600px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.email-template-display[b-0ordyje0t8] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.template-info[b-0ordyje0t8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.template-preview[b-0ordyje0t8] {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    white-space: pre-wrap;
    max-height: 300px;
    overflow-y: auto;
}

.badge-danger[b-0ordyje0t8] {
    background: #f8d7da;
    color: #721c24;
}

.empty-state[b-0ordyje0t8] {
    text-align: center;
    padding: 3rem;
    color: #999;
}

.empty-state p[b-0ordyje0t8] {
    font-size: 1.1rem;
}

.email-template-form .form-control[b-0ordyje0t8] {
    width: 100% !important;
    max-width: 1200px;
    min-width: 600px;
}
/* /Components/Pages/Admin/ResetPasswordModal.razor.rz.scp.css */
/* Modal overlay & structure (scoped to this component) */
.modal-overlay[b-zw6a2d8jjl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn-b-zw6a2d8jjl 0.2s;
}

@keyframes fadeIn-b-zw6a2d8jjl {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content[b-zw6a2d8jjl] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    animation: slideUp-b-zw6a2d8jjl 0.3s;
}

@keyframes slideUp-b-zw6a2d8jjl {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-zw6a2d8jjl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e4e6eb;
}

.modal-header h3[b-zw6a2d8jjl] {
    margin: 0;
    color: #1877F2;
    font-size: 20px;
}

.modal-close[b-zw6a2d8jjl] {
    background: none;
    border: none;
    font-size: 32px;
    color: #65676b;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover[b-zw6a2d8jjl] {
    background: #f0f2f5;
}

.modal-body[b-zw6a2d8jjl] {
    padding: 24px;
}

.modal-label[b-zw6a2d8jjl] {
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.modal-user-info[b-zw6a2d8jjl] {
    background: #f0f2f5;
    padding: 12px 16px;
    border-radius: 8px;
    color: #65676b;
    line-height: 1.6;
    margin: 0 0 16px;
}

.modal-user-info strong[b-zw6a2d8jjl] {
    color: #333;
}

.modal-footer[b-zw6a2d8jjl] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #e4e6eb;
}

.btn-cancel[b-zw6a2d8jjl] {
    background: #e4e6eb;
    color: #333;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-cancel:hover[b-zw6a2d8jjl] {
    background: #d8dadf;
}

.btn-confirm[b-zw6a2d8jjl] {
    background: #1877F2;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
    align-self: flex-start;
}

.btn-confirm:hover[b-zw6a2d8jjl] {
    background: #166fe5;
}

.btn-confirm:disabled[b-zw6a2d8jjl] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Reset Password Modal sizing */
.reset-password-modal[b-zw6a2d8jjl] {
    max-width: 460px;
}

/* Tabs */
.reset-tabs[b-zw6a2d8jjl] {
    display: flex;
    border-bottom: 2px solid #e4e6eb;
    margin: 16px 0 0;
}

.tab-btn[b-zw6a2d8jjl] {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #65676b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover[b-zw6a2d8jjl] {
    color: #1877F2;
}

.tab-active[b-zw6a2d8jjl] {
    color: #1877F2;
    border-bottom-color: #1877F2;
}

/* Tab content panel */
.tab-panel[b-zw6a2d8jjl] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

/* Inputs */
.reset-pw-input[b-zw6a2d8jjl] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.reset-pw-input:focus[b-zw6a2d8jjl] {
    outline: none;
    border-color: #1877F2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

/* Email target display */
.reset-email-target[b-zw6a2d8jjl] {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0;
    padding: 8px 12px;
    background: #f0f2f5;
    border-radius: 6px;
}

/* Send email button */
.btn-send-email[b-zw6a2d8jjl] {
    background: #e7f3ff;
    color: #1877F2;
    border: 1px solid #1877F2;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    align-self: flex-start;
}

.btn-send-email:hover[b-zw6a2d8jjl] {
    background: #cce4ff;
}

.btn-send-email:disabled[b-zw6a2d8jjl] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Feedback messages */
.reset-pw-error[b-zw6a2d8jjl] {
    background: #f8d7da;
    color: #721c24;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #f5c6cb;
}

.reset-pw-success[b-zw6a2d8jjl] {
    background: #d4edda;
    color: #155724;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #c3e6cb;
}
/* /Components/Pages/Browse.razor.rz.scp.css */
/* Top Navigation Bar */
.top-nav[b-sf1ctfayf7] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
}

.nav-left[b-sf1ctfayf7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo[b-sf1ctfayf7] {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    cursor: pointer;
}

.nav-center[b-sf1ctfayf7] {
    display: flex;
    gap: 20px;
}

.nav-icon[b-sf1ctfayf7] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.nav-icon:hover[b-sf1ctfayf7] {
    background-color: #d8dadf;
}

.nav-icon.active[b-sf1ctfayf7] {
    background-color: #1877f2;
}

.nav-icon .icon[b-sf1ctfayf7] {
    font-size: 20px;
}

.nav-right[b-sf1ctfayf7] {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.icon-btn[b-sf1ctfayf7] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    overflow: hidden;
}

.icon-btn:has(.profile-picture)[b-sf1ctfayf7] {
    background-color: transparent;
}

.icon-btn:hover[b-sf1ctfayf7] {
    background-color: #d8dadf;
}

.icon-btn:has(.profile-picture):hover[b-sf1ctfayf7] {
    background-color: transparent;
}

.icon-btn .profile-picture[b-sf1ctfayf7] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown[b-sf1ctfayf7] {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-profile-picture[b-sf1ctfayf7] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-item[b-sf1ctfayf7] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 600;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-item:hover[b-sf1ctfayf7] {
    background-color: #f0f2f5;
}

.profile-dropdown hr[b-sf1ctfayf7] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 8px 0;
}

.dropdown-item[b-sf1ctfayf7] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover[b-sf1ctfayf7] {
    background-color: #f0f2f5;
}

.dropdown-item.admin-link[b-sf1ctfayf7] {
    color: #1877F2;
    font-weight: 600;
}

.dropdown-item.admin-link:hover[b-sf1ctfayf7] {
    background-color: #e7f3ff;
}

/* Browse Container */
.browse-container[b-sf1ctfayf7] {
    max-width: 1200px;
    margin: 80px auto 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 8px;
}

.browse-header[b-sf1ctfayf7] {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 10px;
}

.browse-header h1[b-sf1ctfayf7] {
    font-size: 20px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.browse-header .subtitle[b-sf1ctfayf7] {
    font-size: 1rem;
    color: #65676b;
    margin-top: -10px;
    margin-bottom: 20px;
}

.loading[b-sf1ctfayf7] {
    text-align: center;
    padding: 4rem;
    color: #1c1e21;
}

.spinner[b-sf1ctfayf7] {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 4px solid rgba(102, 126, 234, 0.3);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-sf1ctfayf7 1s linear infinite;
}

@keyframes spin-b-sf1ctfayf7 {
    to { transform: rotate(360deg); }
}

.loading p[b-sf1ctfayf7] {
    font-size: 1.1rem;
    color: #65676b;
}

.error-message[b-sf1ctfayf7] {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    color: #721c24;
    max-width: 500px;
    margin: 0 auto;
}

.btn-retry[b-sf1ctfayf7] {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-retry:hover[b-sf1ctfayf7] {
    background-color: #166fe5;
}

.empty-state[b-sf1ctfayf7] {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon[b-sf1ctfayf7] {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.empty-state h2[b-sf1ctfayf7] {
    color: #333;
    margin-bottom: 0.5rem;
}

.empty-state p[b-sf1ctfayf7] {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-primary[b-sf1ctfayf7] {
    padding: 0.75rem 1.5rem;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover[b-sf1ctfayf7] {
    background-color: #166fe5;
}

.users-grid[b-sf1ctfayf7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.user-card[b-sf1ctfayf7] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.user-card:hover[b-sf1ctfayf7] {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.user-card-image[b-sf1ctfayf7] {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0f2f5;
}

.user-card-image img[b-sf1ctfayf7] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-placeholder[b-sf1ctfayf7] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #bbb;
}

.verified-badge-small[b-sf1ctfayf7] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.user-card-content[b-sf1ctfayf7] {
    padding: 1rem;
}

.user-card-content h3[b-sf1ctfayf7] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.username-link[b-sf1ctfayf7] {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.username-link:hover[b-sf1ctfayf7] {
    color: #1877f2;
    text-decoration: underline;
}

.user-location[b-sf1ctfayf7] {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.user-tagline[b-sf1ctfayf7] {
    color: #444;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.user-bio[b-sf1ctfayf7] {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-card-actions[b-sf1ctfayf7] {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.btn-like[b-sf1ctfayf7], .btn-next[b-sf1ctfayf7] {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-like[b-sf1ctfayf7] {
    background-color: #ff4458;
    color: white;
}

.btn-like:hover[b-sf1ctfayf7] {
    background-color: #e63946;
}

.btn-next[b-sf1ctfayf7] {
    background-color: #64748b;
    color: white;
}

.btn-next:hover[b-sf1ctfayf7] {
    background-color: #475569;
}

.load-more[b-sf1ctfayf7] {
    text-align: center;
    padding: 2rem 0;
}

.btn-load-more[b-sf1ctfayf7] {
    padding: 0.75rem 2rem;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-load-more:hover:not(:disabled)[b-sf1ctfayf7] {
    background-color: #166fe5;
}

.btn-load-more:disabled[b-sf1ctfayf7] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Pages/Chat.razor.rz.scp.css */
.chat-layout[b-a9co2dahap] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f0f2f5;
    overflow: hidden;
}

.chat-header[b-a9co2dahap] {
    background: white;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e4e6eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    flex-wrap: nowrap;
    min-height: 60px;
    margin-top: 57px;
}

.header-left[b-a9co2dahap] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.header-right[b-a9co2dahap] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.top-nav[b-a9co2dahap] {
    background: white;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left[b-a9co2dahap] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-btn[b-a9co2dahap] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.back-btn:hover[b-a9co2dahap] {
    background-color: #f0f2f5;
}

.chat-header-info[b-a9co2dahap] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
    -webkit-tap-highlight-color: transparent;
    flex: 1;
    min-width: 0;
}

.chat-header-info:hover[b-a9co2dahap] {
    background-color: #f0f2f5;
}

.chat-header-info:active[b-a9co2dahap] {
    background-color: #e4e6eb;
}

.chat-header-info > div:last-child[b-a9co2dahap] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.header-avatar[b-a9co2dahap] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    flex-shrink: 0;
}

.header-avatar img[b-a9co2dahap] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-indicator[b-a9co2dahap] {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #44b700;
    border: 2px solid white;
    border-radius: 50%;
}

.chat-header-info h3[b-a9co2dahap] {
    margin: 0;
    color: #333;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-status[b-a9co2dahap] {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-right[b-a9co2dahap] {
    display: flex;
    gap: 0.5rem;
}

.icon-btn[b-a9co2dahap] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.2s;
}

.icon-btn:hover[b-a9co2dahap] {
    background-color: #f0f2f5;
}

.messages-container[b-a9co2dahap] {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: calc(100vh - 140px);
}

.loading[b-a9co2dahap], .error-message[b-a9co2dahap] {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.error-message[b-a9co2dahap] {
    background: rgba(255, 71, 87, 0.1);
    border-radius: 8px;
    color: #ff4757;
}

.no-messages[b-a9co2dahap] {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.no-messages-icon[b-a9co2dahap] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.message[b-a9co2dahap] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    animation: fadeIn-b-a9co2dahap 0.2s ease-in;
    width: 100%;
}

@keyframes fadeIn-b-a9co2dahap {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-mine[b-a9co2dahap] {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.message-avatar[b-a9co2dahap] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.message-avatar img[b-a9co2dahap] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content[b-a9co2dahap] {
    display: flex;
    flex-direction: column;
    max-width: 70%;
    position: relative;
}

.message-mine .message-content[b-a9co2dahap] {
    align-items: flex-end;
}

/* Message Bubble Container */
.message-bubble-container[b-a9co2dahap] {
    position: relative;
    display: inline-block;
}

.message-content:hover .message-actions[b-a9co2dahap] {
    opacity: 1;
    visibility: visible;
}

.message-bubble[b-a9co2dahap] {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-theirs .message-bubble[b-a9co2dahap] {
    background: #f0f0f0;
    color: #333;
    border-bottom-left-radius: 4px;
}

.message-mine .message-bubble[b-a9co2dahap] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-bubble p[b-a9co2dahap] {
    margin: 0;
    white-space: pre-wrap;
}

.message-time[b-a9co2dahap] {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.message-input-container[b-a9co2dahap] {
    background: white;
    padding: 1rem;
    border-top: 1px solid #e1e8ed;
}

.message-input-wrapper[b-a9co2dahap] {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    max-width: 800px;
    margin: 0 auto;
}

.message-input[b-a9co2dahap] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e1e8ed;
    border-radius: 20px;
    resize: none;
    font-family: inherit;
    font-size: 0.95rem;
    max-height: 120px;
    overflow-y: auto;
}

.message-input:focus[b-a9co2dahap] {
    outline: none;
    border-color: #667eea;
}

.send-btn[b-a9co2dahap] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.send-btn:hover:not(:disabled)[b-a9co2dahap] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.send-btn:disabled[b-a9co2dahap] {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .messages-container[b-a9co2dahap] {
        max-height: calc(100vh - 120px);
    }
    
    .message-content[b-a9co2dahap] {
        max-width: 80%;
    }
}

/* New Styles for Enhanced Features */

/* Connection Status */
.connection-status[b-a9co2dahap] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.connection-status.connecting[b-a9co2dahap],
.connection-status.reconnecting[b-a9co2dahap] {
    background: #fff3cd;
    color: #856404;
}

.connection-status.disconnected[b-a9co2dahap] {
    background: #f8d7da;
    color: #721c24;
}

/* Typing Indicator */
.typing-indicator[b-a9co2dahap] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.typing-dots[b-a9co2dahap] {
    display: inline-flex;
    gap: 2px;
}

.typing-dots span[b-a9co2dahap] {
    animation: typingDot-b-a9co2dahap 1.4s infinite;
}

.typing-dots span:nth-child(2)[b-a9co2dahap] {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3)[b-a9co2dahap] {
    animation-delay: 0.4s;
}

@keyframes typingDot-b-a9co2dahap {
    0%, 60%, 100% {
        opacity: 0.3;
    }
    30% {
        opacity: 1;
    }
}

/* Message Status */
.message-meta[b-a9co2dahap] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.message-status[b-a9co2dahap] {
    display: inline-flex;
    align-items: center;
}

.status-icon[b-a9co2dahap] {
    font-size: 0.85rem;
}

.status-icon.sending[b-a9co2dahap] {
    opacity: 0.6;
    animation: pulse-b-a9co2dahap 1.5s ease-in-out infinite;
}

.status-icon.sent[b-a9co2dahap] {
    color: #999;
}

.status-icon.delivered[b-a9co2dahap] {
    color: #999;
}

.status-icon.read[b-a9co2dahap] {
    color: #0084ff;
}

.status-icon.failed[b-a9co2dahap] {
    color: #ff4757;
}

@keyframes pulse-b-a9co2dahap {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* Message States */
.message-sending[b-a9co2dahap] {
    opacity: 0.7;
}

.message-failed .message-bubble[b-a9co2dahap] {
    background: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb;
}

/* Loading More Messages */
.loading-more[b-a9co2dahap] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.spinner-small[b-a9co2dahap] {
    width: 20px;
    height: 20px;
    border: 2px solid #e4e6eb;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-a9co2dahap 1s linear infinite;
}

.loading .spinner[b-a9co2dahap] {
    width: 40px;
    height: 40px;
    border: 3px solid #e4e6eb;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-a9co2dahap 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-a9co2dahap {
    to { transform: rotate(360deg); }
}

/* Input Warning */
.input-warning[b-a9co2dahap] {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #fff3cd;
    color: #856404;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}

/* Error Message with Retry */
.error-message[b-a9co2dahap] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 8px;
    color: #ff4757;
    padding: 2rem;
    text-align: center;
}

.error-message button[b-a9co2dahap] {
    background: #ff4757;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.error-message button:hover[b-a9co2dahap] {
    background: #ff3838;
}

/* Smooth Scrolling */
.messages-container[b-a9co2dahap] {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.back-btn:focus[b-a9co2dahap],
.icon-btn:focus[b-a9co2dahap],
.send-btn:focus[b-a9co2dahap],
.message-input:focus[b-a9co2dahap] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Improved textarea */
.message-input:disabled[b-a9co2dahap] {
    background-color: #f0f2f5;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Context Menu */
.context-menu[b-a9co2dahap] {
    position: fixed;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 120px;
    overflow: hidden;
}

.context-menu-btn[b-a9co2dahap] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: white;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.context-menu-btn:hover[b-a9co2dahap] {
    background: #f0f2f5;
}

.context-menu-btn:active[b-a9co2dahap] {
    background: #e4e6eb;
}

/* Message Actions (3-dot, reply, emoji buttons) */
.message-actions[b-a9co2dahap] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
    background: white;
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 10;
}

/* Position actions on right side for received messages */
.message-theirs .message-actions[b-a9co2dahap] {
    right: -140px;
}

/* Position actions on left side for sent messages */
.message-mine .message-actions[b-a9co2dahap] {
    left: -140px;
}

.action-btn[b-a9co2dahap] {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background-color 0.2s, transform 0.1s;
    padding: 0;
}

.action-btn:hover[b-a9co2dahap] {
    background: #f0f2f5;
    transform: scale(1.1);
}

.action-btn:active[b-a9co2dahap] {
    transform: scale(0.95);
}

.action-btn span[b-a9co2dahap] {
    display: block;
    line-height: 1;
}

/* Message Menu Popup (3-dot menu) - Inline version above message */
.message-menu-popup-inline[b-a9co2dahap] {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 4px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 180px;
    overflow: hidden;
    animation: popupSlideDown-b-a9co2dahap 0.2s ease-out;
}

.message-theirs .message-menu-popup-inline[b-a9co2dahap] {
    right: auto;
    left: 0;
}

@keyframes popupSlideDown-b-a9co2dahap {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item[b-a9co2dahap] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: none;
    background: white;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f2f5;
}

.menu-item:last-child[b-a9co2dahap] {
    border-bottom: none;
}

.menu-item:hover[b-a9co2dahap] {
    background: #f0f2f5;
}

.menu-item:active[b-a9co2dahap] {
    background: #e4e6eb;
}

.menu-icon[b-a9co2dahap] {
    font-size: 1.1rem;
    width: 24px;
    display: inline-block;
}

/* Emoji Picker Popup - Inline version above message */
.emoji-picker-popup-inline[b-a9co2dahap] {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 4px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 12px;
    display: flex;
    gap: 8px;
    animation: popupSlideDown-b-a9co2dahap 0.2s ease-out;
}

.message-theirs .emoji-picker-popup-inline[b-a9co2dahap] {
    right: auto;
    left: 0;
}

.emoji-reaction-btn[b-a9co2dahap] {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emoji-reaction-btn:hover[b-a9co2dahap] {
    background: #f0f2f5;
    transform: scale(1.2);
}

.emoji-reaction-btn:active[b-a9co2dahap] {
    transform: scale(0.9);
}

/* Reply Banner */
.replying-to-banner[b-a9co2dahap] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    margin-bottom: 0.5rem;
    border-radius: 8px 8px 0 0;
}

.reply-content[b-a9co2dahap] {
    flex: 1;
    min-width: 0;
}

.reply-header[b-a9co2dahap] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.reply-preview[b-a9co2dahap] {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cancel-reply-btn[b-a9co2dahap] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
    transition: color 0.2s;
}

.cancel-reply-btn:hover[b-a9co2dahap] {
    color: #666;
}

/* Reply Preview Inline (inside message bubble) */
.reply-preview-inline[b-a9co2dahap] {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.message-mine .reply-preview-inline[b-a9co2dahap] {
    background: rgba(255, 255, 255, 0.2);
}

.reply-bar[b-a9co2dahap] {
    width: 3px;
    background: #667eea;
    border-radius: 2px;
    flex-shrink: 0;
}

.reply-info[b-a9co2dahap] {
    flex: 1;
    min-width: 0;
}

.reply-to-name[b-a9co2dahap] {
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.125rem;
}

.message-mine .reply-to-name[b-a9co2dahap] {
    color: rgba(255, 255, 255, 0.9);
}

.reply-to-text[b-a9co2dahap] {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-mine .reply-to-text[b-a9co2dahap] {
    color: rgba(255, 255, 255, 0.8);
}

/* Message Reactions */
.message-reactions[b-a9co2dahap] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0.5rem;
}

.reaction-badge[b-a9co2dahap] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.reaction-badge:hover[b-a9co2dahap] {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.reaction-badge.reacted[b-a9co2dahap] {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.reaction-badge.reacted:hover[b-a9co2dahap] {
    background: #5568d3;
}

.reaction-count[b-a9co2dahap] {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Media Viewer Overlay */
.media-viewer-overlay[b-a9co2dahap] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.media-viewer-content[b-a9co2dahap] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.media-viewer-content img[b-a9co2dahap],
.media-viewer-content video[b-a9co2dahap] {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.media-viewer-close[b-a9co2dahap] {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.media-viewer-close:hover[b-a9co2dahap] {
    background: rgba(255, 255, 255, 0.1);
}

/* Edit Mode */
.message-edit[b-a9co2dahap] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.edit-textarea[b-a9co2dahap] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 60px;
}

.edit-textarea:focus[b-a9co2dahap] {
    outline: none;
    border-color: #667eea;
}

.edit-actions[b-a9co2dahap] {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.edit-save-btn[b-a9co2dahap],
.edit-cancel-btn[b-a9co2dahap] {
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.edit-save-btn[b-a9co2dahap] {
    background: #667eea;
    color: white;
}

.edit-save-btn:hover[b-a9co2dahap] {
    background: #5568d3;
}

.edit-save-btn:disabled[b-a9co2dahap] {
    background: #ccc;
    cursor: not-allowed;
}

.edit-cancel-btn[b-a9co2dahap] {
    background: #f0f2f5;
    color: #333;
}

.edit-cancel-btn:hover[b-a9co2dahap] {
    background: #e4e6eb;
}

/* Deleted Message */
.deleted-message[b-a9co2dahap] {
    color: #999;
    font-style: italic;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Edited Label */
.edited-label[b-a9co2dahap] {
    color: #999;
    font-size: 0.7rem;
    font-style: italic;
    margin-left: 0.5rem;
}

/* Message Media */
.message-media[b-a9co2dahap] {
    max-width: 150px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.message-media:hover[b-a9co2dahap] {
    transform: scale(1.02);
}

.message-media img[b-a9co2dahap],
.message-media video[b-a9co2dahap] {
    width: 100%;
    height: auto;
    display: block;
}

.media-caption[b-a9co2dahap] {
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Attach Button */
.attach-btn[b-a9co2dahap] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #667eea;
    transition: transform 0.2s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attach-btn:hover[b-a9co2dahap] {
    background: #f0f2f5;
    transform: scale(1.1);
}

.attach-btn:active[b-a9co2dahap] {
    transform: scale(0.95);
}

/* Upload Progress */
.upload-progress[b-a9co2dahap] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f0f2f5;
    border-radius: 8px;
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: #666;
}

.upload-spinner[b-a9co2dahap] {
    width: 16px;
    height: 16px;
    border: 2px solid #e4e6eb;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-a9co2dahap 1s linear infinite;
}
/* /Components/Pages/EditProfile.razor.rz.scp.css */
/* Edit Profile Page Styles */

*[b-1fvaa93p64] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.facebook-layout[b-1fvaa93p64] {
    min-height: 100vh;
    /* background-color: #f0f2f5; */
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Top Navigation Bar */
.top-nav[b-1fvaa93p64] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
}

.nav-left[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo[b-1fvaa93p64] {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    cursor: pointer;
}

.nav-center[b-1fvaa93p64] {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex: 1;
}

.nav-icon[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 56px;
    cursor: pointer;
    text-decoration: none;
    color: #65676b;
    border-bottom: 3px solid transparent;
    transition: background-color 0.2s;
}

.nav-icon:hover[b-1fvaa93p64] {
    background-color: #f0f2f5;
    border-radius: 8px;
}

.nav-icon .icon[b-1fvaa93p64] {
    font-size: 24px;
}

.nav-right[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
    position: relative;
}

.icon-btn[b-1fvaa93p64] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.icon-btn:hover[b-1fvaa93p64] {
    background-color: #d8dadf;
}

.icon-btn .icon[b-1fvaa93p64] {
    font-size: 20px;
}

.icon-btn .profile-picture[b-1fvaa93p64] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown[b-1fvaa93p64] {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-profile-picture[b-1fvaa93p64] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-item[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 600;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-item:hover[b-1fvaa93p64] {
    background-color: #f0f2f5;
}

.profile-dropdown hr[b-1fvaa93p64] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 8px 0;
}

.dropdown-item[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover[b-1fvaa93p64] {
    background-color: #f0f2f5;
}

/* Tabs Navigation */
.profile-tabs[b-1fvaa93p64] {
    display: flex;
    border-bottom: 1px solid #e4e6eb;
    background-color: white;
    padding: 0 16px;
}

.settings-title[b-1fvaa93p64] {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #1c1e21;
    margin: 0;
}

.tab-btn[b-1fvaa93p64] {
    padding: 16px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: #65676b;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 8px;
}

.tab-btn:hover[b-1fvaa93p64] {
    background-color: #f2f3f5;
    border-radius: 4px 4px 0 0;
}

.tab-btn.active[b-1fvaa93p64] {
    color: #1877f2;
    border-bottom-color: #1877f2;
}

/* Edit Profile Container */
.edit-container[b-1fvaa93p64] {
    padding-top: 80px;
    padding-bottom: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.edit-card[b-1fvaa93p64] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.edit-header[b-1fvaa93p64] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f2f5;
}

.edit-header h1[b-1fvaa93p64] {
    font-size: 20px;
    font-weight: 700;
    color: #1c1e21;
}

.btn-back[b-1fvaa93p64] {
    padding: 8px 16px;
    background-color: #e4e6eb;
    border: none;
    border-radius: 6px;
    color: #1c1e21;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-back:hover[b-1fvaa93p64] {
    background-color: #d8dadf;
}

.form-section[b-1fvaa93p64] {
    margin-bottom: 30px;
}

.form-section h2[b-1fvaa93p64] {
    font-size: 20px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
}

.profile-picture-section[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f7f8fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.profile-preview[b-1fvaa93p64],
.profile-preview-placeholder[b-1fvaa93p64] {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1877f2;
    flex-shrink: 0;
}

.profile-preview-placeholder[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background-color: white;
}

.upload-controls[b-1fvaa93p64] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-input[b-1fvaa93p64] {
    display: none;
}

.btn-upload[b-1fvaa93p64] {
    padding: 10px 20px;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-upload:hover[b-1fvaa93p64] {
    background-color: #166fe5;
}

.upload-status[b-1fvaa93p64] {
    color: #65676b;
    font-size: 13px;
}

.photos-grid[b-1fvaa93p64] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.photo-item[b-1fvaa93p64] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.photo-preview-container[b-1fvaa93p64] {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e4e6eb;
}

.photo-preview-small[b-1fvaa93p64] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-preview-empty[b-1fvaa93p64] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background-color: #f0f2f5;
}

.btn-upload-small[b-1fvaa93p64] {
    padding: 8px 16px;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
    font-size: 14px;
}

.btn-upload-small:hover[b-1fvaa93p64] {
    background-color: #166fe5;
}

.form-group[b-1fvaa93p64] {
    margin-bottom: 20px;
}

.form-group label[b-1fvaa93p64] {
    display: block;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-control[b-1fvaa93p64] {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f6f7;
}

.form-control:focus[b-1fvaa93p64] {
    border-color: #1877f2;
    box-shadow: 0 0 0 2px #e7f3ff;
    background-color: white;
}

.form-control:disabled[b-1fvaa93p64] {
    background-color: #e4e6eb;
    color: #65676b;
    cursor: not-allowed;
}

.form-text[b-1fvaa93p64] {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #65676b;
}

.checkbox-group[b-1fvaa93p64] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background-color: #f7f8fa;
    border-radius: 6px;
    margin-top: 8px;
}

.checkbox-item[b-1fvaa93p64] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"][b-1fvaa93p64] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label[b-1fvaa93p64] {
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    color: #1c1e21;
}

.validation-message[b-1fvaa93p64] {
    color: #d93025;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.alert[b-1fvaa93p64] {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-1fvaa93p64] {
    background-color: #ffebe9;
    color: #d93025;
    border: 1px solid #f7c4bf;
}

.alert-success[b-1fvaa93p64] {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-actions[b-1fvaa93p64] {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f2f5;
    position: relative;
    z-index: 10;
}

.btn-save[b-1fvaa93p64],
.btn-cancel[b-1fvaa93p64] {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    pointer-events: auto;
}

.btn-save[b-1fvaa93p64] {
    background-color: #1877f2;
    color: white;
}

.btn-save:hover:not(:disabled)[b-1fvaa93p64] {
    background-color: #166fe5;
}

.btn-save:disabled[b-1fvaa93p64] {
    background-color: #e4e6eb;
    color: #bcc0c4;
    cursor: not-allowed;
}

.btn-cancel[b-1fvaa93p64] {
    background-color: #e4e6eb;
    color: #1c1e21;
}

.btn-cancel:hover[b-1fvaa93p64] {
    background-color: #d8dadf;
}

@media (max-width: 768px) {
    .nav-center[b-1fvaa93p64] {
        display: none;
    }
    
    .edit-card[b-1fvaa93p64] {
        padding: 20px;
    }
    
    .edit-header[b-1fvaa93p64] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .form-actions[b-1fvaa93p64] {
        flex-direction: column;
    }
}
/* /Components/Pages/EditProfileComponents/AboutEdit.razor.rz.scp.css */
/* AboutEdit Component Styles */

.form-section[b-ip7z7l3p03] {
    padding-top: 30px;
}

.form-section h2[b-ip7z7l3p03] {
    font-size: 24px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}
/* /Components/Pages/EditProfileComponents/InterestsEdit.razor.rz.scp.css */
.form-section[b-3orb6gz0tl] {
    padding-top: 30px;
}

.form-section h2[b-3orb6gz0tl] {
    font-size: 24px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.help-text[b-3orb6gz0tl] {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.suggestions[b-3orb6gz0tl] {
    margin-top: 20px;
    margin-bottom: 20px;
}

.suggestions h4[b-3orb6gz0tl] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.suggestion-tags[b-3orb6gz0tl] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-btn[b-3orb6gz0tl] {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 15px;
}
/* /Components/Pages/EditProfileComponents/LocationEdit.razor.rz.scp.css */
/* Location Edit Styles */

.form-section[b-nnn9xfzsoh] {
    padding-top: 30px;
}

.form-section h2[b-nnn9xfzsoh] {
    font-size: 24px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.map-container[b-nnn9xfzsoh] {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f0f2f5;
    border: 1px solid #ddd;
    cursor: crosshair;
}

.location-display[b-nnn9xfzsoh] {
    margin-bottom: 16px;
}

.location-info[b-nnn9xfzsoh] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.location-info.empty[b-nnn9xfzsoh] {
    color: #65676b;
    font-style: italic;
}

.location-icon[b-nnn9xfzsoh] {
    font-size: 24px;
}

.location-text[b-nnn9xfzsoh] {
    font-size: 15px;
    font-weight: 500;
}

.btn-get-current[b-nnn9xfzsoh] {
    padding: 12px 24px;
    background-color: #42b72a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-get-current:hover[b-nnn9xfzsoh] {
    background-color: #36a420;
}
/* /Components/Pages/EditProfileComponents/PreferencesEdit.razor.rz.scp.css */
/* PreferencesEdit Component Styles */
.form-section[b-zhu2bygsep] {
    padding-top: 0;
}

.form-section h2[b-zhu2bygsep] {
    font-size: 18px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.form-group[b-zhu2bygsep] {
    margin-bottom: 24px;
}

.form-group label[b-zhu2bygsep] {
    display: block;
    font-weight: 600;
    color: #1c1e21;
    font-size: 15px;
    margin-bottom: 8px;
}

.form-text[b-zhu2bygsep] {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #65676b;
}

.checkbox-group[b-zhu2bygsep] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background-color: #f7f8fa;
    border-radius: 6px;
    margin-top: 8px;
}

.checkbox-item[b-zhu2bygsep] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"][b-zhu2bygsep] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"]:disabled[b-zhu2bygsep] {
    cursor: not-allowed;
    opacity: 0.6;
}

.checkbox-item label[b-zhu2bygsep] {
    cursor: pointer;
    margin: 0;
    font-size: 15px;
    color: #1c1e21;
}

.text-warning[b-zhu2bygsep] {
    color: #e67e22 !important;
    font-weight: 500;
}
/* /Components/Pages/Home/Home.razor.rz.scp.css */
/* Facebook-style Home Page Layout */

.facebook-layout[b-f905a2nzuz] {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}

/* Top Navigation Bar */
.top-nav[b-f905a2nzuz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
}

/* Diagnostic override: ensure top-nav and profile button are above overlays */
.top-nav[b-f905a2nzuz] {
    z-index: 99999 !important;
}

.icon-btn[b-f905a2nzuz] {
    position: relative;
    z-index: 100000 !important;
    pointer-events: auto !important;
}

.nav-left[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.logo[b-f905a2nzuz] {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    cursor: pointer;
}

.search-box[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    background-color: #f0f2f5;
    border-radius: 50px;
    padding: 8px 12px;
    width: 240px;
}

.search-icon[b-f905a2nzuz] {
    margin-right: 8px;
}

.search-box input[b-f905a2nzuz] {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 15px;
}

.nav-center[b-f905a2nzuz] {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex: 1;
}

.nav-icon[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-decoration: none;
    color: #65676b;
    border-bottom: 3px solid transparent;
    transition: background-color 0.2s;
    border-radius: 50%;
    background-color: #e4e6eb;
}

.nav-icon:hover[b-f905a2nzuz] {
    background-color: #f0f2f5;
    border-radius: 8px;
}

.nav-icon.active[b-f905a2nzuz] {
    color: #1877f2;
    border-bottom-color: #1877f2;
}

.nav-icon .icon[b-f905a2nzuz] {
    font-size: 24px;
}

.nav-right[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
    position: relative;
}

.icon-btn[b-f905a2nzuz] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    overflow: hidden;
}

.icon-btn:has(.profile-picture)[b-f905a2nzuz] {
    background-color: transparent;
}

.icon-btn:hover[b-f905a2nzuz] {
    background-color: #d8dadf;
}

.icon-btn:has(.profile-picture):hover[b-f905a2nzuz] {
    background-color: transparent;
}

.icon-btn .icon[b-f905a2nzuz] {
    font-size: 20px;
}

.icon-btn .profile-picture[b-f905a2nzuz] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown[b-f905a2nzuz] {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-profile-picture[b-f905a2nzuz] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-item[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 600;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-item:hover[b-f905a2nzuz] {
    background-color: #f0f2f5;
}

.profile-dropdown hr[b-f905a2nzuz] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 8px 0;
}

.dropdown-item[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover[b-f905a2nzuz] {
    background-color: #f0f2f5;
}

.dropdown-item.admin-link[b-f905a2nzuz] {
    color: #1877F2;
    font-weight: 600;
}

.dropdown-item.admin-link:hover[b-f905a2nzuz] {
    background-color: #e7f3ff;
}

/* Main Content Area */
.main-content[b-f905a2nzuz] {
    padding-top: 56px;
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Feed */
.feed[b-f905a2nzuz] {
    flex: 1;
    padding: 20px 32px;
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
}

.create-post[b-f905a2nzuz] {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.post-input-container[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-avatar[b-f905a2nzuz] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.post-input[b-f905a2nzuz] {
    flex: 1;
    background-color: #f0f2f5;
    border: none;
    border-radius: 50px;
    padding: 12px 16px;
    font-size: 15px;
    outline: none;
}

.post-input:hover[b-f905a2nzuz] {
    background-color: #e4e6eb;
}

.create-post hr[b-f905a2nzuz] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 12px 0;
}

.post-actions[b-f905a2nzuz] {
    display: flex;
    justify-content: space-around;
}

.post-action-btn[b-f905a2nzuz] {
    flex: 1;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #65676b;
    font-weight: 600;
    transition: background-color 0.2s;
}

.post-action-btn:hover[b-f905a2nzuz] {
    background-color: #f0f2f5;
}

.post[b-f905a2nzuz] {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.post-header[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.post-author[b-f905a2nzuz] {
    font-weight: 600;
    color: #050505;
}

.post-time[b-f905a2nzuz] {
    font-size: 13px;
    color: #65676b;
}

.post-content[b-f905a2nzuz] {
    color: #050505;
    font-size: 15px;
    line-height: 1.4;
}

/* Right Sidebar */
.right-sidebar[b-f905a2nzuz] {
    width: 280px;
    padding: 20px 16px;
    position: fixed;
    top: 56px;
    right: 0;
    height: calc(100vh - 56px);
    overflow-y: auto;
}

.right-sidebar h3[b-f905a2nzuz] {
    margin-bottom: 12px;
    color: #65676b;
    font-size: 16px;
}

.contact-list[b-f905a2nzuz] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #050505;
    transition: background-color 0.2s;
}

.contact-item:hover[b-f905a2nzuz] {
    background-color: #e4e6eb;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .right-sidebar[b-f905a2nzuz] {
        display: none;
    }

    .feed[b-f905a2nzuz] {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .nav-center[b-f905a2nzuz] {
        display: none;
    }

    .search-box[b-f905a2nzuz] {
        width: 180px;
    }

    .feed[b-f905a2nzuz] {
        padding: 20px 16px;
    }
}

/* Post Interactions */
.post-interactions[b-f905a2nzuz] {
    display: flex;
    border-top: 1px solid #e4e6eb;
    padding-top: 8px;
    margin-top: 12px;
}

.interaction-btn[b-f905a2nzuz] {
    flex: 1;
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: #65676b;
    transition: background-color 0.2s;
}

.interaction-btn:hover[b-f905a2nzuz] {
    background-color: #f0f2f5;
}

.interaction-btn.active[b-f905a2nzuz] {
    color: #1877f2;
}

.reactions-summary[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    font-size: 13px;
    color: #65676b;
}

.reaction-emoji[b-f905a2nzuz] {
    font-size: 16px;
}

.reaction-count[b-f905a2nzuz] {
    margin-left: 4px;
}

/* Comments Section */
.comments-section[b-f905a2nzuz] {
    border-top: 1px solid #e4e6eb;
    padding-top: 12px;
    margin-top: 12px;
}

.add-comment[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.user-avatar-small[b-f905a2nzuz] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.comment-input[b-f905a2nzuz] {
    flex: 1;
    background-color: #f0f2f5;
    border: none;
    border-radius: 18px;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.comment-submit-btn[b-f905a2nzuz] {
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.comment-submit-btn:hover[b-f905a2nzuz] {
    background-color: #166fe5;
}

.comment[b-f905a2nzuz] {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.comment-avatar[b-f905a2nzuz] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.comment-content[b-f905a2nzuz] {
    flex: 1;
}

.comment-header[b-f905a2nzuz] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.comment-author[b-f905a2nzuz] {
    font-weight: 600;
    font-size: 13px;
    color: #050505;
}

.comment-time[b-f905a2nzuz] {
    font-size: 12px;
    color: #65676b;
}

.comment-text[b-f905a2nzuz] {
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 8px 12px;
    font-size: 14px;
    color: #050505;
    display: inline-block;
}

.comment-reactions[b-f905a2nzuz] {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    font-size: 12px;
}

.reaction-emoji-small[b-f905a2nzuz] {
    padding: 2px 6px;
    background-color: #fff;
    border: 1px solid #e4e6eb;
    border-radius: 12px;
}

.comment-actions[b-f905a2nzuz] {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.comment-action-btn[b-f905a2nzuz] {
    background: none;
    border: none;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #65676b;
    cursor: pointer;
    transition: color 0.2s;
}

.comment-action-btn:hover[b-f905a2nzuz] {
    color: #050505;
}

.comment-action-btn.active[b-f905a2nzuz] {
    color: #1877f2;
}

.replies[b-f905a2nzuz] {
    margin-left: 40px;
    margin-top: 12px;
}

.reply[b-f905a2nzuz] {
    margin-bottom: 8px;
}

.reply-input[b-f905a2nzuz] {
    margin-top: 8px;
}

.user-avatar-img[b-f905a2nzuz] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.loading-container[b-f905a2nzuz],
.empty-state[b-f905a2nzuz] {
    text-align: center;
    padding: 40px 20px;
    color: #65676b;
}

.loading-text[b-f905a2nzuz] {
    text-align: center;
    color: #65676b;
    padding: 12px;
    font-size: 14px;
}

.load-more-container[b-f905a2nzuz] {
    text-align: center;
    padding: 20px;
}

.load-more-btn[b-f905a2nzuz] {
    background-color: #f0f2f5;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.load-more-btn:hover:not(:disabled)[b-f905a2nzuz] {
    background-color: #e4e6eb;
}

.load-more-btn:disabled[b-f905a2nzuz] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* /Components/Pages/Login.razor.rz.scp.css */
/* Login Page Styles - Facebook-inspired design */

*[b-50l5tiag1g] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-50l5tiag1g], html[b-50l5tiag1g] {
    margin: 0;
    padding: 0;
    height: 100%;
}

.login-container[b-50l5tiag1g] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    padding: 20px;
    gap: 100px;
}

.login-left[b-50l5tiag1g] {
    max-width: 580px;
    padding-right: 20px;
}

.logo[b-50l5tiag1g] {
    font-size: 60px;
    font-weight: 700;
    color: #1877f2;
    margin: 0 0 20px 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.tagline[b-50l5tiag1g] {
    font-size: 28px;
    line-height: 32px;
    color: #1c1e21;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.login-right[b-50l5tiag1g] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-card[b-50l5tiag1g] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 396px;
    max-width: 100%;
}

.form-group[b-50l5tiag1g] {
    margin-bottom: 12px;
}

.form-control[b-50l5tiag1g] {
    width: 100%;
    padding: 14px 16px;
    font-size: 17px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.form-control:focus[b-50l5tiag1g] {
    border-color: #1877f2;
    box-shadow: 0 0 0 2px #e7f3ff;
}

.form-control[b-50l5tiag1g]::placeholder {
    color: #90949c;
}

.validation-message[b-50l5tiag1g] {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.alert[b-50l5tiag1g] {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
}

.alert-danger[b-50l5tiag1g] {
    background-color: #ffebe9;
    color: #d93025;
    border: 1px solid #f7c4bf;
}

.btn-login[b-50l5tiag1g] {
    width: 100%;
    background-color: #1877f2;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin-top: 8px;
}

.btn-login:hover:not(:disabled)[b-50l5tiag1g] {
    background-color: #166fe5;
}

.btn-login:disabled[b-50l5tiag1g] {
    background-color: #e4e6eb;
    color: #bcc0c4;
    cursor: not-allowed;
}

.forgot-password[b-50l5tiag1g] {
    text-align: center;
    padding: 16px 0;
}

.forgot-password a[b-50l5tiag1g] {
    color: #1877f2;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover[b-50l5tiag1g] {
    text-decoration: underline;
}

hr[b-50l5tiag1g] {
    border: none;
    border-top: 1px solid #dadde1;
    margin: 20px 0;
}

.create-account-section[b-50l5tiag1g] {
    text-align: center;
    padding: 8px 0;
}

.btn-create-account[b-50l5tiag1g] {
    background-color: #42b72a;
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.btn-create-account:hover[b-50l5tiag1g] {
    background-color: #36a420;
}

.create-page-text[b-50l5tiag1g] {
    margin-top: 28px;
    text-align: center;
    font-size: 14px;
    color: #1c1e21;
}

.create-page-text strong[b-50l5tiag1g] {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container[b-50l5tiag1g] {
        flex-direction: column;
        gap: 40px;
    }

    .login-left[b-50l5tiag1g] {
        text-align: center;
        padding-right: 0;
    }

    .logo[b-50l5tiag1g] {
        font-size: 50px;
    }

    .tagline[b-50l5tiag1g] {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .login-card[b-50l5tiag1g] {
        width: 100%;
        padding: 16px;
    }

    .logo[b-50l5tiag1g] {
        font-size: 40px;
    }

    .tagline[b-50l5tiag1g] {
        font-size: 20px;
        line-height: 24px;
    }
}
/* /Components/Pages/Logout.razor.rz.scp.css */
/* Logout Page Styles */

*[b-31smltj6wf] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-31smltj6wf], html[b-31smltj6wf] {
    margin: 0;
    padding: 0;
    height: 100%;
}

.logout-container[b-31smltj6wf] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    padding: 20px;
}

.logout-card[b-31smltj6wf] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 400px;
    max-width: 100%;
    text-align: center;
}

.logout-content[b-31smltj6wf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner[b-31smltj6wf] {
    width: 60px;
    height: 60px;
    border: 4px solid #e4e6eb;
    border-top-color: #1877f2;
    border-radius: 50%;
    animation: spin-b-31smltj6wf 1s linear infinite;
}

@keyframes spin-b-31smltj6wf {
    to { transform: rotate(360deg); }
}

.success-icon[b-31smltj6wf] {
    width: 80px;
    height: 80px;
    background-color: #42b72a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
}

.error-icon[b-31smltj6wf] {
    font-size: 64px;
}

h2[b-31smltj6wf] {
    font-size: 24px;
    font-weight: 600;
    color: #1c1e21;
    margin: 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

p[b-31smltj6wf] {
    font-size: 16px;
    color: #65676b;
    margin: 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.error-message[b-31smltj6wf] {
    color: #d93025;
}

.btn-primary[b-31smltj6wf] {
    background-color: #1877f2;
    color: white;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin-top: 10px;
}

.btn-primary:hover[b-31smltj6wf] {
    background-color: #166fe5;
}

.btn-secondary[b-31smltj6wf] {
    background-color: #e4e6eb;
    color: #1c1e21;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.btn-secondary:hover[b-31smltj6wf] {
    background-color: #d8dadf;
}

/* Responsive Design */
@media (max-width: 480px) {
    .logout-card[b-31smltj6wf] {
        width: 100%;
        padding: 30px 20px;
    }

    h2[b-31smltj6wf] {
        font-size: 20px;
    }

    p[b-31smltj6wf] {
        font-size: 14px;
    }

    .spinner[b-31smltj6wf] {
        width: 50px;
        height: 50px;
    }

    .success-icon[b-31smltj6wf] {
        width: 70px;
        height: 70px;
        font-size: 40px;
    }
}
/* /Components/Pages/Matches.razor.rz.scp.css */
.facebook-layout[b-9dkm5jzjc4] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.top-nav[b-9dkm5jzjc4] {
    background: white;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo[b-9dkm5jzjc4] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    cursor: pointer;
}

.nav-center[b-9dkm5jzjc4] {
    display: flex;
    gap: 1rem;
}

.nav-icon[b-9dkm5jzjc4] {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
    position: relative;
}

.nav-icon:hover[b-9dkm5jzjc4] {
    background-color: #f0f2f5;
}

.nav-icon.active[b-9dkm5jzjc4] {
    background-color: #e7f3ff;
}

.nav-icon .icon[b-9dkm5jzjc4] {
    font-size: 1.5rem;
}

.badge[b-9dkm5jzjc4] {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4757;
    color: white;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
}

.nav-right[b-9dkm5jzjc4] {
    position: relative;
}

.icon-btn[b-9dkm5jzjc4] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.icon-btn:hover[b-9dkm5jzjc4] {
    background-color: #f0f2f5;
}

.profile-dropdown[b-9dkm5jzjc4] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1000;
}

.profile-item[b-9dkm5jzjc4], .dropdown-item[b-9dkm5jzjc4] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.profile-item:hover[b-9dkm5jzjc4], .dropdown-item:hover[b-9dkm5jzjc4] {
    background-color: #f0f2f5;
}

.matches-container[b-9dkm5jzjc4] {
    max-width: 800px;
    margin: 80px auto 2rem;
    padding: 0 1rem;
    background: white;
    border-radius: 8px;
}

.matches-header[b-9dkm5jzjc4] {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 10px;
}

.matches-header h1[b-9dkm5jzjc4] {
    font-size: 20px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f2f5;
}

.matches-header p[b-9dkm5jzjc4] {
    font-size: 1rem;
    color: #65676b;
    margin-top: -10px;
    margin-bottom: 20px;
}

.loading[b-9dkm5jzjc4], .error-message[b-9dkm5jzjc4] {
    text-align: center;
    color: #1c1e21;
    font-size: 1.2rem;
    padding: 2rem;
}

.error-message[b-9dkm5jzjc4] {
    background: rgba(255, 71, 87, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.no-matches[b-9dkm5jzjc4] {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.no-matches-icon[b-9dkm5jzjc4] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-matches h2[b-9dkm5jzjc4] {
    color: #333;
    margin-bottom: 0.5rem;
}

.no-matches p[b-9dkm5jzjc4] {
    color: #666;
    margin-bottom: 2rem;
}

.btn-browse[b-9dkm5jzjc4] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-browse:hover[b-9dkm5jzjc4] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.matches-grid[b-9dkm5jzjc4] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match-card[b-9dkm5jzjc4] {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.match-card:hover[b-9dkm5jzjc4] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.match-avatar[b-9dkm5jzjc4] {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.match-avatar img[b-9dkm5jzjc4] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder[b-9dkm5jzjc4] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.online-indicator[b-9dkm5jzjc4] {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #2ecc71;
    border: 2px solid white;
    border-radius: 50%;
}

.match-info[b-9dkm5jzjc4] {
    flex: 1;
}

.match-info h3[b-9dkm5jzjc4] {
    color: #333;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.match-gender[b-9dkm5jzjc4] {
    color: #666;
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
}

.match-time[b-9dkm5jzjc4] {
    color: #999;
    margin: 0;
    font-size: 0.85rem;
}

.match-arrow[b-9dkm5jzjc4] {
    font-size: 1.5rem;
    color: #667eea;
}

@media (max-width: 768px) {
    .matches-header h1[b-9dkm5jzjc4] {
        font-size: 20px;
    }
    
    .matches-container[b-9dkm5jzjc4] {
        padding: 0 0.5rem;
    }
}
/* /Components/Pages/Preferences.razor.rz.scp.css */
/* Preferences Page Styles */
.preferences-container[b-o24d8c2gm6] {
    padding-top: 80px;
    padding-bottom: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.preferences-card[b-o24d8c2gm6] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.preferences-header[b-o24d8c2gm6] {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f2f5;
}

.preferences-header h1[b-o24d8c2gm6] {
    font-size: 20px;
    font-weight: 600;
    color: #1c1e21;
    margin: 0;
}

.info-section[b-o24d8c2gm6] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item[b-o24d8c2gm6] {
    display: flex;
    padding: 16px;
    background-color: #f7f8fa;
    border-radius: 8px;
    align-items: flex-start;
}

.info-label[b-o24d8c2gm6] {
    font-weight: 600;
    color: #1c1e21;
    min-width: 200px;
    font-size: 15px;
}

.info-value[b-o24d8c2gm6] {
    color: #65676b;
    font-size: 15px;
    flex: 1;
}

.profile-actions[b-o24d8c2gm6] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e4e6eb;
}

.btn-edit[b-o24d8c2gm6] {
    padding: 10px 24px;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-edit:hover[b-o24d8c2gm6] {
    background-color: #166fe5;
}

.alert[b-o24d8c2gm6] {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger[b-o24d8c2gm6] {
    background-color: #fee;
    color: #c41e3a;
    border: 1px solid #f8d7da;
}

@media (max-width: 768px) {
    .preferences-container[b-o24d8c2gm6] {
        padding-top: 70px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .preferences-card[b-o24d8c2gm6] {
        padding: 20px;
    }

    .info-item[b-o24d8c2gm6] {
        flex-direction: column;
        gap: 8px;
    }

    .info-label[b-o24d8c2gm6] {
        min-width: auto;
    }

    .preferences-header h1[b-o24d8c2gm6] {
        font-size: 20px;
    }
}
/* /Components/Pages/Profile/Profile.razor.rz.scp.css */
/* Profile Page Styles */

.facebook-layout[b-qmplmp5uko] {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    min-height: 100vh;
}

/* Top Navigation Bar */
.top-nav[b-qmplmp5uko] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
}

.nav-left[b-qmplmp5uko] {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo[b-qmplmp5uko] {
    font-size: 28px;
    font-weight: 700;
    color: #1877f2;
    cursor: pointer;
}

.nav-center[b-qmplmp5uko] {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex: 1;
}

.nav-icon[b-qmplmp5uko] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.nav-icon:hover[b-qmplmp5uko] {
    background-color: #d8dadf;
}

.nav-icon.active[b-qmplmp5uko] {
    background-color: #1877f2;
}

.nav-icon .icon[b-qmplmp5uko] {
    font-size: 20px;
}

.nav-right[b-qmplmp5uko] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
    position: relative;
}

.icon-btn[b-qmplmp5uko] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
    overflow: hidden;
}

.icon-btn:has(.profile-picture)[b-qmplmp5uko] {
    background-color: transparent;
}

.icon-btn:hover[b-qmplmp5uko] {
    background-color: #d8dadf;
}

.icon-btn:has(.profile-picture):hover[b-qmplmp5uko] {
    background-color: transparent;
}

.nav-verified-badge[b-qmplmp5uko] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 2px;
}

.nav-verified-badge svg[b-qmplmp5uko] {
    width: 100%;
    height: 100%;
}

.icon-btn .icon[b-qmplmp5uko] {
    font-size: 20px;
}

.icon-btn .profile-picture[b-qmplmp5uko] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown[b-qmplmp5uko] {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-avatar-wrapper[b-qmplmp5uko] {
    position: relative;
    display: inline-block;
}

.dropdown-profile-picture[b-qmplmp5uko] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-verified-badge[b-qmplmp5uko] {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 2px;
}

.dropdown-verified-badge svg[b-qmplmp5uko] {
    width: 100%;
    height: 100%;
}

.profile-item[b-qmplmp5uko] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-weight: 600;
}

.profile-dropdown hr[b-qmplmp5uko] {
    border: none;
    border-top: 1px solid #e4e6eb;
    margin: 8px 0;
}

.dropdown-item[b-qmplmp5uko] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #050505;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover[b-qmplmp5uko] {
    background-color: #f0f2f5;
}

.dropdown-item.admin-link[b-qmplmp5uko] {
    color: #1877F2;
    font-weight: 600;
}

.dropdown-item.admin-link:hover[b-qmplmp5uko] {
    background-color: #e7f3ff;
}

/* Profile Container */
.profile-container[b-qmplmp5uko] {
    padding-top: 56px;
    padding-bottom: 40px;
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 56px);
}

.profile-card[b-qmplmp5uko] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    overflow: visible;
    margin-bottom: 20px;
}

/* Profile Info Section */
.profile-info-section[b-qmplmp5uko] {
    padding: 32px 32px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.profile-picture-container[b-qmplmp5uko] {
    flex-shrink: 0;
}

.profile-avatar-wrapper[b-qmplmp5uko] {
    position: relative;
    display: inline-block;
    background: white;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.profile-avatar-large[b-qmplmp5uko] {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #e4e6eb;
}

.profile-avatar-placeholder[b-qmplmp5uko] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #65676b;
    background: #f0f2f5;
}

.verified-badge[b-qmplmp5uko] {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-name-section[b-qmplmp5uko] {
    flex: 1;
    padding-bottom: 16px;
}

.profile-username[b-qmplmp5uko] {
    font-size: 20px;
    font-weight: 700;
    color: #050505;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.verified-badge-inline[b-qmplmp5uko] {
    color: #1877F2;
    font-size: 28px;
    margin-left: 4px;
}

.profile-nickname[b-qmplmp5uko] {
    font-size: 15px;
    color: #65676b;
    margin: 0;
    font-weight: 400;
}

/* Tabs Navigation */
.profile-tabs[b-qmplmp5uko] {
    display: flex;
    border-top: 1px solid #e4e6eb;
    padding: 0 32px;
    gap: 8px;
}

.tab-btn[b-qmplmp5uko] {
    background: none;
    border: none;
    padding: 16px 16px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #65676b;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tab-icon[b-qmplmp5uko] {
    font-size: 18px;
    display: inline-block;
}

.tab-label[b-qmplmp5uko] {
    display: inline-block;
}

.tab-btn:hover[b-qmplmp5uko] {
    background-color: #f2f3f5;
    border-radius: 4px 4px 0 0;
}

.tab-btn.active[b-qmplmp5uko] {
    color: #1877f2;
    border-bottom-color: #1877f2;
}

.tab-btn.active:hover[b-qmplmp5uko] {
    background-color: transparent;
}

.verified-badge-inline[b-qmplmp5uko] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #1877F2;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.profile-nickname[b-qmplmp5uko] {
    font-size: 18px;
    opacity: 0.9;
}

.profile-info[b-qmplmp5uko] {
    padding: 24px 32px 32px;
}

.profile-info h2[b-qmplmp5uko] {
    font-size: 20px !important;
    font-weight: 700;
    color: #050505;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.info-section[b-qmplmp5uko] {
    margin-bottom: 30px;
}

.info-item[b-qmplmp5uko] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f2f5;
}

.info-item:last-child[b-qmplmp5uko] {
    border-bottom: none;
}

.info-label[b-qmplmp5uko] {
    font-weight: 600;
    color: #65676b;
    font-size: 15px;
}

.info-value[b-qmplmp5uko] {
    color: #1c1e21;
    font-size: 15px;
}

.alert[b-qmplmp5uko] {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-qmplmp5uko] {
    background-color: #ffebe9;
    color: #d93025;
    border: 1px solid #f7c4bf;
}

.profile-actions[b-qmplmp5uko] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Tabs Navigation */
.profile-tabs[b-qmplmp5uko] {
    display: flex;
    border-bottom: 1px solid #e4e6eb;
    background-color: white;
    padding: 0 16px;
}

.tab-btn[b-qmplmp5uko] {
    padding: 16px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: #65676b;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 8px;
}

.tab-btn:hover[b-qmplmp5uko] {
    background-color: #f2f3f5;
    border-radius: 4px 4px 0 0;
}

.tab-btn.active[b-qmplmp5uko] {
    color: #1877f2;
    border-bottom-color: #1877f2;
}

/* Photos Section */
.photos-section[b-qmplmp5uko] {
    padding: 20px 0;
}

.photo-grid[b-qmplmp5uko] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.photo-grid-item[b-qmplmp5uko] {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f2f5;
    cursor: pointer;
    transition: transform 0.2s;
}

.photo-grid-item:hover[b-qmplmp5uko] {
    transform: scale(1.02);
}

.photo-grid-item img[b-qmplmp5uko] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-label[b-qmplmp5uko] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

.no-photos[b-qmplmp5uko] {
    text-align: center;
    color: #65676b;
    padding: 40px 20px;
    font-size: 16px;
}

/* Photo Upload Section */
.photo-upload-section[b-qmplmp5uko] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: #f7f8fa;
    border-radius: 8px;
    margin-bottom: 32px;
}

.profile-picture-preview[b-qmplmp5uko] {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1877f2;
}

.profile-picture-placeholder[b-qmplmp5uko] {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border: 4px solid #d0d2d6;
}

.btn-upload[b-qmplmp5uko] {
    background-color: #1877f2;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s;
}

.btn-upload:hover[b-qmplmp5uko] {
    background-color: #166fe5;
}

.additional-photos-grid[b-qmplmp5uko] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.photo-upload-item[b-qmplmp5uko] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #f7f8fa;
    border-radius: 8px;
}

.photo-preview[b-qmplmp5uko] {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e4e6eb;
}

.photo-placeholder[b-qmplmp5uko] {
    width: 100%;
    aspect-ratio: 1;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 8px;
    border: 2px dashed #c5c7ca;
}

.btn-upload-small[b-qmplmp5uko] {
    background-color: #1877f2;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s;
    width: 100%;
    text-align: center;
}

.btn-upload-small:hover[b-qmplmp5uko] {
    background-color: #166fe5;
}

.upload-status-message[b-qmplmp5uko] {
    padding: 12px 16px;
    background-color: #d3e9ff;
    color: #1877f2;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.photo-actions[b-qmplmp5uko] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.btn-save-photos[b-qmplmp5uko],
.btn-cancel-photos[b-qmplmp5uko] {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save-photos[b-qmplmp5uko] {
    background-color: #42b72a;
    color: white;
}

.btn-save-photos:hover:not(:disabled)[b-qmplmp5uko] {
    background-color: #36a420;
}

.btn-save-photos:disabled[b-qmplmp5uko] {
    background-color: #a8daab;
    cursor: not-allowed;
}

.btn-cancel-photos[b-qmplmp5uko] {
    background-color: #e4e6eb;
    color: #1c1e21;
}

.btn-cancel-photos:hover[b-qmplmp5uko] {
    background-color: #d8dadf;
}

.btn-edit[b-qmplmp5uko],
.btn-logout[b-qmplmp5uko] {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-edit[b-qmplmp5uko] {
    background-color: #1877f2;
    color: white;
}

.btn-edit:hover[b-qmplmp5uko] {
    background-color: #166fe5;
}

.btn-logout[b-qmplmp5uko] {
    background-color: #e4e6eb;
    color: #1c1e21;
}

.btn-logout:hover[b-qmplmp5uko] {
    background-color: #d8dadf;
}

@media (max-width: 768px) {
    .nav-center[b-qmplmp5uko] {
        display: none;
    }

    .profile-container[b-qmplmp5uko] {
        padding-top: 56px;
    }

    .profile-info-section[b-qmplmp5uko] {
        padding: 24px 16px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .profile-avatar-wrapper[b-qmplmp5uko] {
        padding: 3px;
    }

    .profile-avatar-large[b-qmplmp5uko] {
        width: 140px;
        height: 140px;
    }

    .profile-avatar-placeholder[b-qmplmp5uko] {
        font-size: 70px;
    }

    .profile-name-section[b-qmplmp5uko] {
        padding-bottom: 12px;
    }
    
    .profile-username[b-qmplmp5uko] {
        font-size: 20px;
        line-height: 1.2;
    }

    .verified-badge-inline[b-qmplmp5uko] {
        font-size: 24px;
    }
    
    .profile-nickname[b-qmplmp5uko] {
        font-size: 15px;
        margin-top: 2px;
    }
    
    .profile-info[b-qmplmp5uko] {
        padding: 20px 16px;
    }
    
    .info-item[b-qmplmp5uko] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .profile-actions[b-qmplmp5uko] {
        flex-direction: column;
    }

    .photo-grid[b-qmplmp5uko] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 8px;
    }

    .profile-tabs[b-qmplmp5uko] {
        padding: 0 !important;
        gap: 0 !important;
        display: flex !important;
        justify-content: space-around !important;
        width: 100% !important;
        border-top: 1px solid #e4e6eb;
    }

    .tab-btn[b-qmplmp5uko] {
        padding: 10px 4px 8px !important;
        font-size: 12px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        flex: 1 !important;
        min-width: 0 !important;
        border-bottom: 2px solid transparent !important;
    }

    .tab-icon[b-qmplmp5uko] {
        font-size: 20px !important;
        display: block !important;
    }

    .tab-label[b-qmplmp5uko] {
        display: block !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .additional-photos-grid[b-qmplmp5uko] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .profile-picture-preview[b-qmplmp5uko],
    .profile-picture-placeholder[b-qmplmp5uko] {
        width: 140px;
        height: 140px;
    }

    .profile-picture-placeholder[b-qmplmp5uko] {
        font-size: 48px;
    }

    .photo-actions[b-qmplmp5uko] {
        flex-direction: column;
        width: 100%;
    }

    .btn-save-photos[b-qmplmp5uko],
    .btn-cancel-photos[b-qmplmp5uko] {
        width: 100%;
    }
}

/* Preferences Tab Styles */
.preference-item[b-qmplmp5uko] {
    padding: 20px;
    border: 1px solid #e4e6eb;
    border-radius: 8px;
    margin-bottom: 16px;
    background-color: #f8f9fa;
}

.preference-item h3[b-qmplmp5uko] {
    font-size: 18px;
    font-weight: 600;
    color: #1c1e21;
    margin-bottom: 8px;
}

.preference-description[b-qmplmp5uko] {
    font-size: 14px;
    color: #65676b;
    margin-bottom: 16px;
}

.btn-secondary[b-qmplmp5uko] {
    background-color: #e4e6eb;
    color: #050505;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary:hover[b-qmplmp5uko] {
    background-color: #d8dadf;
}

.btn-danger[b-qmplmp5uko] {
    background-color: #f02849;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-danger:hover[b-qmplmp5uko] {
    background-color: #d91432;
}
/* /Components/Pages/Profile/ProfileComponents/AboutTab.razor.rz.scp.css */
/* AboutTab Component Styles */
.info-section[b-mbzqtbfpjn] {
    margin-bottom: 30px;
}

.info-item[b-mbzqtbfpjn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f2f5;
}

.info-item:last-child[b-mbzqtbfpjn] {
    border-bottom: none;
}

.info-label[b-mbzqtbfpjn] {
    font-weight: 600;
    color: #65676b;
    font-size: 15px;
}

.info-value[b-mbzqtbfpjn] {
    color: #1c1e21;
    font-size: 15px;
}

.alert[b-mbzqtbfpjn] {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-mbzqtbfpjn] {
    background-color: #ffebe9;
    color: #d93025;
    border: 1px solid #f7c4bf;
}

.profile-actions[b-mbzqtbfpjn] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-edit[b-mbzqtbfpjn],
.btn-logout[b-mbzqtbfpjn] {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-edit[b-mbzqtbfpjn] {
    background-color: #1877f2;
    color: white;
}

.btn-edit:hover[b-mbzqtbfpjn] {
    background-color: #166fe5;
}

.btn-logout[b-mbzqtbfpjn] {
    background-color: #e4e6eb;
    color: #1c1e21;
}

.btn-logout:hover[b-mbzqtbfpjn] {
    background-color: #d8dadf;
}

@media (max-width: 768px) {
    .info-item[b-mbzqtbfpjn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .profile-actions[b-mbzqtbfpjn] {
        flex-direction: column;
    }
}

.profile-info h2[b-mbzqtbfpjn] {
    font-size: 20px !important;
}
/* /Components/Pages/Profile/ProfileComponents/InterestsTab.razor.rz.scp.css */
.interests-container h2[b-op1beypf95] {
    margin-top: 0;
    margin-bottom: 15px;
}

.interests-section[b-op1beypf95] {
    margin-bottom: 20px;
}

.interests-section h3[b-op1beypf95] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.interests-list[b-op1beypf95] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.interest-tag[b-op1beypf95] {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.like-tag[b-op1beypf95] {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #90caf9;
}

.dislike-tag[b-op1beypf95] {
    background-color: #ffebee;
    color: #d32f2f;
    border: 1px solid #ef9a9a;
}

.no-interests[b-op1beypf95] {
    color: #999;
    font-style: italic;
    margin: 0;
}
/* /Components/Pages/Profile/ProfileComponents/LocationTab.razor.rz.scp.css */
/* Location Tab Styles */

.location-section[b-qirqih8hdx] {
    margin-bottom: 20px;
}

.map-container[b-qirqih8hdx] {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f0f2f5;
    border: 1px solid #ddd;
}

.location-info[b-qirqih8hdx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.location-info.empty[b-qirqih8hdx] {
    color: #65676b;
}

.location-icon[b-qirqih8hdx] {
    font-size: 24px;
}

.location-text[b-qirqih8hdx] {
    font-size: 16px;
    font-weight: 500;
}

.alert[b-qirqih8hdx] {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.alert-danger[b-qirqih8hdx] {
    background-color: #fee;
    color: #c00;
    border: 1px solid #fcc;
}

.profile-actions[b-qirqih8hdx] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-edit[b-qirqih8hdx] {
    padding: 12px 24px;
    background-color: #1877f2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-edit:hover[b-qirqih8hdx] {
    background-color: #166fe5;
}
/* /Components/Pages/Profile/ProfileComponents/PhotosTab.razor.rz.scp.css */
/* PhotosTab Component Styles */
.photo-upload-section[b-0uyq44v2wv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: #f7f8fa;
    border-radius: 8px;
    margin-bottom: 32px;
}

.profile-picture-preview[b-0uyq44v2wv] {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1877f2;
}

.profile-picture-placeholder[b-0uyq44v2wv] {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border: 4px solid #d0d2d6;
}

.btn-upload[b-0uyq44v2wv] {
    background-color: #1877f2;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s;
}

.btn-upload:hover[b-0uyq44v2wv] {
    background-color: #166fe5;
}

.additional-photos-grid[b-0uyq44v2wv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.photo-upload-item[b-0uyq44v2wv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #f7f8fa;
    border-radius: 8px;
}

.photo-preview[b-0uyq44v2wv] {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e4e6eb;
}

.photo-placeholder[b-0uyq44v2wv] {
    width: 100%;
    aspect-ratio: 1;
    background-color: #e4e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 8px;
    border: 2px dashed #c5c7ca;
}

.btn-upload-small[b-0uyq44v2wv] {
    background-color: #1877f2;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: background-color 0.2s;
    width: 100%;
    text-align: center;
}

.btn-upload-small:hover[b-0uyq44v2wv] {
    background-color: #166fe5;
}

.upload-status-message[b-0uyq44v2wv] {
    padding: 12px 16px;
    background-color: #d3e9ff;
    color: #1877f2;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.photo-actions[b-0uyq44v2wv] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.btn-save-photos[b-0uyq44v2wv],
.btn-cancel-photos[b-0uyq44v2wv] {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-save-photos[b-0uyq44v2wv] {
    background-color: #42b72a;
    color: white;
}

.btn-save-photos:hover:not(:disabled)[b-0uyq44v2wv] {
    background-color: #36a420;
}

.btn-save-photos:disabled[b-0uyq44v2wv] {
    background-color: #a8daab;
    cursor: not-allowed;
}

.btn-cancel-photos[b-0uyq44v2wv] {
    background-color: #e4e6eb;
    color: #1c1e21;
}

.btn-cancel-photos:hover[b-0uyq44v2wv] {
    background-color: #d8dadf;
}

@media (max-width: 768px) {
    .additional-photos-grid[b-0uyq44v2wv] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .profile-picture-preview[b-0uyq44v2wv],
    .profile-picture-placeholder[b-0uyq44v2wv] {
        width: 140px;
        height: 140px;
    }

    .profile-picture-placeholder[b-0uyq44v2wv] {
        font-size: 48px;
    }

    .photo-actions[b-0uyq44v2wv] {
        flex-direction: column;
        width: 100%;
    }

    .btn-save-photos[b-0uyq44v2wv],
    .btn-cancel-photos[b-0uyq44v2wv] {
        width: 100%;
    }
}
/* /Components/Pages/Profile/ProfileComponents/PreferencesTab.razor.rz.scp.css */
/* PreferencesTab Component Styles */
h2[b-0a81fe59lo] {
    margin-top: 0;
    margin-bottom: 15px;
}

.info-section[b-0a81fe59lo] {
    margin-bottom: 30px;
}

.info-item[b-0a81fe59lo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f2f5;
}

.info-item:last-child[b-0a81fe59lo] {
    border-bottom: none;
}

.info-label[b-0a81fe59lo] {
    font-weight: 600;
    color: #65676b;
    font-size: 15px;
}

.info-value[b-0a81fe59lo] {
    color: #1c1e21;
    font-size: 15px;
}

.alert[b-0a81fe59lo] {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-danger[b-0a81fe59lo] {
    background-color: #ffebe9;
    color: #d93025;
    border: 1px solid #f7c4bf;
}

.profile-actions[b-0a81fe59lo] {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-edit[b-0a81fe59lo] {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #1877f2;
    color: white;
}

.btn-edit:hover[b-0a81fe59lo] {
    background-color: #166fe5;
}

@media (max-width: 768px) {
    .info-item[b-0a81fe59lo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .profile-actions[b-0a81fe59lo] {
        flex-direction: column;
    }
}
/* /Components/Pages/Register.razor.rz.scp.css */
/* Register Page Styles */

*[b-cg7kigfzej] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-cg7kigfzej], html[b-cg7kigfzej] {
    margin: 0;
    padding: 0;
    height: 100%;
}

.register-container[b-cg7kigfzej] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    padding: 20px;
    gap: 100px;
}

.register-left[b-cg7kigfzej] {
    max-width: 580px;
    padding-right: 20px;
}

.logo[b-cg7kigfzej] {
    font-size: 60px;
    font-weight: 700;
    color: #1877f2;
    margin: 0 0 20px 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.tagline[b-cg7kigfzej] {
    font-size: 28px;
    line-height: 32px;
    color: #1c1e21;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.register-right[b-cg7kigfzej] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-card[b-cg7kigfzej] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 432px;
    max-width: 100%;
}

h2[b-cg7kigfzej] {
    font-size: 32px;
    font-weight: 700;
    color: #1c1e21;
    margin: 0 0 0 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.subtitle[b-cg7kigfzej] {
    font-size: 15px;
    color: #606770;
    margin: 0 0 20px 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.form-group[b-cg7kigfzej] {
    margin-bottom: 12px;
}

.password-field[b-cg7kigfzej] {
    position: relative;
}

.password-field .form-control[b-cg7kigfzej] {
    padding-right: 45px;
}

.toggle-password[b-cg7kigfzej] {
    position: absolute;
    right: 10px;
    top: 11px;
    background: none;
    border: none;
    cursor: pointer;
    color: #606770;
    font-size: 18px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.toggle-password:hover[b-cg7kigfzej] {
    color: #1877f2;
}

.toggle-password:focus[b-cg7kigfzej] {
    outline: none;
}

.form-control[b-cg7kigfzej] {
    width: 100%;
    padding: 11px;
    font-size: 15px;
    border: 1px solid #ccd0d5;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f6f7;
}

.form-control:focus[b-cg7kigfzej] {
    border-color: #1877f2;
    box-shadow: 0 0 0 2px #e7f3ff;
    background-color: white;
}

.form-control[b-cg7kigfzej]::placeholder {
    color: #90949c;
}

hr[b-cg7kigfzej] {
    border: none;
    border-top: 2px solid #ccd0d5;
    margin: 20px 0;
}

.validation-message[b-cg7kigfzej] {
    color: #d93025;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.alert[b-cg7kigfzej] {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
}

.alert-danger[b-cg7kigfzej] {
    background-color: #ffebe9;
    color: #d93025;
    border: 1px solid #f7c4bf;
}

.alert-success[b-cg7kigfzej] {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.terms-text[b-cg7kigfzej] {
    font-size: 11px;
    color: #777;
    text-align: center;
    line-height: 14px;
    margin: 12px 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.btn-signup[b-cg7kigfzej] {
    width: 50%;
    background-color: #42b72a;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 11px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    display: block;
    margin: 0 auto;
}

.btn-signup:hover:not(:disabled)[b-cg7kigfzej] {
    background-color: #36a420;
}

.btn-signup:disabled[b-cg7kigfzej] {
    background-color: #e4e6eb;
    color: #bcc0c4;
    cursor: not-allowed;
}

.login-link[b-cg7kigfzej] {
    text-align: center;
    padding: 20px 0 0 0;
    border-top: 1px solid #dadde1;
    margin-top: 20px;
}

.login-link a[b-cg7kigfzej] {
    color: #1877f2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.login-link a:hover[b-cg7kigfzej] {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .register-container[b-cg7kigfzej] {
        flex-direction: column;
        gap: 40px;
    }

    .register-left[b-cg7kigfzej] {
        text-align: center;
        padding-right: 0;
    }

    .logo[b-cg7kigfzej] {
        font-size: 50px;
    }

    .tagline[b-cg7kigfzej] {
        font-size: 24px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .register-card[b-cg7kigfzej] {
        width: 100%;
        padding: 16px;
    }

    .logo[b-cg7kigfzej] {
        font-size: 40px;
    }

    .tagline[b-cg7kigfzej] {
        font-size: 20px;
        line-height: 24px;
    }

    h2[b-cg7kigfzej] {
        font-size: 28px;
    }

    .btn-signup[b-cg7kigfzej] {
        width: 60%;
    }
}
/* /Components/Pages/TermsAndPrivacy.razor.rz.scp.css */
/* Terms Page Styles */

.terms-container[b-hvjddcvcdw] {
    min-height: 100vh;
    background-color: #f0f2f5;
    padding: 40px 20px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.terms-content[b-hvjddcvcdw] {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-content h1[b-hvjddcvcdw] {
    color: #1c1e21;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-divider[b-hvjddcvcdw] {
    margin: 50px 0 30px 0;
    padding-top: 40px;
    border-top: 3px solid #1877f2;
}

.section-title[b-hvjddcvcdw] {
    color: #1877f2;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.last-updated[b-hvjddcvcdw] {
    color: #65676b;
    font-size: 14px;
    margin-bottom: 30px;
}

.terms-content section[b-hvjddcvcdw] {
    margin-bottom: 30px;
}

.terms-content h2[b-hvjddcvcdw] {
    color: #1c1e21;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.terms-content p[b-hvjddcvcdw] {
    color: #1c1e21;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.terms-content ul[b-hvjddcvcdw] {
    margin-left: 20px;
    margin-bottom: 12px;
}

.terms-content li[b-hvjddcvcdw] {
    color: #1c1e21;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.back-link[b-hvjddcvcdw] {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dadde1;
}

.back-link a[b-hvjddcvcdw] {
    color: #1877f2;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.back-link a:hover[b-hvjddcvcdw] {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-content[b-hvjddcvcdw] {
        padding: 20px;
    }
    
    .terms-content h1[b-hvjddcvcdw] {
        font-size: 24px;
    }
    
    .terms-content h2[b-hvjddcvcdw] {
        font-size: 18px;
    }
}
