/* /Components/ProfileFeed.razor.rz.scp.css */
.profile-feed-overlay[b-rbgbqe1zvw] {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: 100dvh;
    z-index: 1000;
    background: #000;
}

.profile-feed-close-btn[b-rbgbqe1zvw] {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.profile-feed-close-btn:hover[b-rbgbqe1zvw] {
    background: rgba(0, 0, 0, 0.7);
}

.profile-feed-container[b-rbgbqe1zvw] {
    width: 100%;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.profile-feed-container[b-rbgbqe1zvw]::-webkit-scrollbar {
    display: none;
}

/* Render each PostCard exactly like the home feed, but full-height because
   the overlay has no bottom nav (global .post-container subtracts 60px). */
.profile-feed-container[b-rbgbqe1zvw]  .post-container {
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.profile-feed-loading[b-rbgbqe1zvw] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #aaa;
    height: 60px;
}

/* Touch-based swipe gesture support for mobile viewports */
@media (max-width: 768px) {
    .profile-feed-container[b-rbgbqe1zvw] {
        touch-action: pan-y;
        overscroll-behavior-y: contain;
    }
}
/* /Components/ThumbnailGrid.razor.rz.scp.css */
/* ThumbnailGrid scoped styles */

.thumbnail-grid[b-0811vf6n6q] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.thumbnail-item[b-0811vf6n6q] {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    background: #1a1a1a;
}

.thumbnail-media[b-0811vf6n6q] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.thumbnail-delete-btn[b-0811vf6n6q] {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s, transform 0.1s;
}

.thumbnail-delete-btn:hover[b-0811vf6n6q] {
    background: var(--accent-color);
}

.thumbnail-delete-btn:active[b-0811vf6n6q] {
    transform: scale(0.9);
}

/* Loading state */
.thumbnail-grid-loading[b-0811vf6n6q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
}

.spinner[b-0811vf6n6q] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-0811vf6n6q 0.8s linear infinite;
}

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

/* Empty state */
.thumbnail-grid-empty[b-0811vf6n6q] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #aaa;
}

/* Error state */
.thumbnail-grid-error[b-0811vf6n6q] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    text-align: center;
}

.retry-btn[b-0811vf6n6q] {
    padding: 0.5rem 1.5rem;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
}

.retry-btn:hover[b-0811vf6n6q] {
    background: rgba(255, 255, 255, 0.1);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-xhu3lqd326] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-xhu3lqd326], article[b-xhu3lqd326] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-a2ykrpnog1] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.bi[b-a2ykrpnog1] {
    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-a2ykrpnog1] {
    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-a2ykrpnog1] {
    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-a2ykrpnog1] {
    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-a2ykrpnog1] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

    .nav-item[b-a2ykrpnog1]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

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

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

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

    .collapse[b-a2ykrpnog1] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-a2ykrpnog1] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Admin/Dashboard.razor.rz.scp.css */
.stat-card-glass[b-qx1gl9zf1l] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.stat-card-glass:active[b-qx1gl9zf1l] { transform: scale(0.96); }

.stat-card-glass i[b-qx1gl9zf1l] {
    font-size: 1.5rem;
    color: var(--accent, var(--accent-secondary));
    margin-bottom: 12px;
}

.stat-value[b-qx1gl9zf1l] {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-label[b-qx1gl9zf1l] {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification-dot[b-qx1gl9zf1l] {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #ff9800;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff9800;
}

.admin-link-glass[b-qx1gl9zf1l] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
}

.admin-link-glass:hover[b-qx1gl9zf1l] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.icon-circle[b-qx1gl9zf1l] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.badge-count[b-qx1gl9zf1l] {
    background: #ff9800;
    color: black;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 10px;
}
/* /Pages/Admin/Verifications.razor.rz.scp.css */
.req-card-glass[b-9zdl2yio9d] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
}

.status-badge[b-9zdl2yio9d] {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.pending[b-9zdl2yio9d] { background: rgba(255, 152, 0, 0.2); color: #ff9800; }
.status-badge.approved[b-9zdl2yio9d] { background: rgba(76, 175, 80, 0.2); color: #4CAF50; }

.admin-btn[b-9zdl2yio9d] {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.admin-btn.approve[b-9zdl2yio9d] { background: #4CAF50; color: white; }
.admin-btn.reject[b-9zdl2yio9d] { background: rgba(255, 255, 255, 0.1); color: #ff4444; }

.admin-btn:active[b-9zdl2yio9d] { transform: scale(0.95); }
