/* /Components/Pages/Chats.razor.rz.scp.css */
.chats-page[b-pueb4191i3] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    height: calc(100vh - 72px - 36px);
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .65);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* ── Empty / loading states ── */
.chats-empty-state[b-pueb4191i3] {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
}

.spinner[b-pueb4191i3] {
    width: 36px;
    height: 36px;
    border: 3px solid var(--line);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin-b-pueb4191i3 .6s linear infinite;
}

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

/* ── Left panel ── */
.conversations-panel[b-pueb4191i3] {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    overflow: hidden;
}

.conversations-header[b-pueb4191i3] {
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--line);
}

.conversations-header h2[b-pueb4191i3] {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.no-conversations[b-pueb4191i3] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: var(--muted);
    font-size: 14px;
}

.conversations-list[b-pueb4191i3] {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    flex: 1;
}

.conversation-item[b-pueb4191i3] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background .12s ease;
}

.conversation-item:hover[b-pueb4191i3] {
    background: rgba(108, 92, 255, .06);
}

.conversation-item.active[b-pueb4191i3] {
    background: rgba(108, 92, 255, .10);
}

.conversation-avatar[b-pueb4191i3] {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.conversation-info[b-pueb4191i3] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.conversation-name[b-pueb4191i3] {
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-preview[b-pueb4191i3] {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-time[b-pueb4191i3] {
    font-size: 12px;
    color: var(--muted);
    flex-shrink: 0;
}

/* ── Right panel ── */
.chat-panel[b-pueb4191i3] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-placeholder[b-pueb4191i3] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: var(--muted);
    font-size: 15px;
}

.chat-header[b-pueb4191i3] {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
}

.chat-header h3[b-pueb4191i3] {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
}

/* ── Messages ── */
.chat-messages[b-pueb4191i3] {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message[b-pueb4191i3] {
    display: flex;
    max-width: 70%;
}

.message-own[b-pueb4191i3] {
    align-self: flex-end;
}

.message-other[b-pueb4191i3] {
    align-self: flex-start;
}

.message-bubble[b-pueb4191i3] {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
}

.message-own .message-bubble[b-pueb4191i3] {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    border-bottom-right-radius: 4px;
}

.message-other .message-bubble[b-pueb4191i3] {
    background: rgba(18, 22, 49, .06);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.message-text[b-pueb4191i3] {
    margin: 0;
    word-break: break-word;
}

.message-time[b-pueb4191i3] {
    display: block;
    font-size: 11px;
    margin-top: 4px;
    opacity: .65;
    text-align: right;
}

/* ── Input area ── */
.chat-input-area[b-pueb4191i3] {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 14px 24px 18px;
    border-top: 1px solid var(--line);
}

.chat-input[b-pueb4191i3] {
    flex: 1;
    resize: none;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4;
    background: rgba(255, 255, 255, .75);
    color: var(--text);
    outline: none;
    transition: border-color .12s ease;
    max-height: 120px;
}

.chat-input:focus[b-pueb4191i3] {
    border-color: var(--accent2);
}

.chat-input[b-pueb4191i3]::placeholder {
    color: var(--muted);
}

.send-btn[b-pueb4191i3] {
    padding: 12px 20px;
    flex-shrink: 0;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
    .chats-page[b-pueb4191i3] {
        grid-template-columns: 1fr;
        height: calc(100vh - 72px - 18px);
        border-radius: 18px;
    }

    .conversations-panel[b-pueb4191i3] {
        border-right: none;
        border-bottom: 1px solid var(--line);
        max-height: 240px;
    }
}
/* /Components/Pages/FriendsPage.razor.rz.scp.css */
.friends-page[b-x4u4rltus1] {
    max-width: var(--max);
    margin: 0 auto;
    padding: 30px 16px;
}

.friends-header h1[b-x4u4rltus1] {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 24px;
}

/* Tabs */
.tabs[b-x4u4rltus1] {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(18, 22, 49, 0.10);
    padding-bottom: 0;
}

.tab[b-x4u4rltus1] {
    padding: 10px 18px;
    border: none;
    background: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(18, 22, 49, 0.55);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s ease, border-color 0.15s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab:hover[b-x4u4rltus1] {
    color: rgba(18, 22, 49, 0.8);
}

.tab.active[b-x4u4rltus1] {
    color: var(--accent2);
    border-bottom-color: var(--accent2);
    font-weight: 600;
}

.tab-count[b-x4u4rltus1] {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(18, 22, 49, 0.06);
    color: rgba(18, 22, 49, 0.55);
    padding: 1px 8px;
    border-radius: 10px;
}

.tab.active .tab-count[b-x4u4rltus1] {
    background: rgba(108, 92, 255, 0.12);
    color: var(--accent2);
}

/* Content area */
.tab-content[b-x4u4rltus1] {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78));
    border: 1px solid rgba(18, 22, 49, .12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.06);
}

/* Empty state */
.empty-state[b-x4u4rltus1] {
    text-align: center;
    padding: 40px 20px;
}

.empty-state p[b-x4u4rltus1] {
    color: rgba(18, 22, 49, 0.5);
    font-size: 0.95rem;
    margin: 0;
}

/* Loading */
.loading-container[b-x4u4rltus1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    color: rgba(18, 22, 49, 0.5);
}
/* /Components/Pages/ProfilePage.razor.rz.scp.css */
/* Friends section — separate card below the sidebar, inside .profile-left */
.friends-section[b-3pfwpwz8kk] {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .78));
    border: 1px solid rgba(18, 22, 49, .12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.06);
}

.view-all-link[b-3pfwpwz8kk] {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent2);
    text-decoration: none;
}

.view-all-link:hover[b-3pfwpwz8kk] {
    text-decoration: underline;
}

/* Modal styles for ProfilePage */
.modal-backdrop[b-3pfwpwz8kk] {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(16, 24, 40, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal[b-3pfwpwz8kk] {
    width: min(560px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: linear-gradient(180deg, #ffffff, #f4f6ff);
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-large[b-3pfwpwz8kk] {
    width: min(680px, 100%);
}

.modal-head[b-3pfwpwz8kk] {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(18, 22, 49, 0.10);
    background: #ffffff;
    flex-shrink: 0;
}

.modal-head b[b-3pfwpwz8kk] {
    letter-spacing: -0.2px;
}

.x[b-3pfwpwz8kk] {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: #ffffff;
    color: rgba(18, 22, 49, 0.92);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: background 0.15s ease;
}

.x:hover[b-3pfwpwz8kk] {
    background: rgba(245, 245, 245, 1);
}

.modal-body[b-3pfwpwz8kk] {
    padding: 16px;
    background: #f8f9ff;
    overflow-y: auto;
    flex: 1;
}

.split[b-3pfwpwz8kk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.mini-row[b-3pfwpwz8kk] {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mini-row .btn[b-3pfwpwz8kk] {
    flex: 1;
}

.hr[b-3pfwpwz8kk] {
    height: 1px;
    background: rgba(18, 22, 49, 0.10);
    margin: 14px 0;
}

.bio-textarea[b-3pfwpwz8kk] {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: rgba(255, 255, 255, 0.90);
    color: var(--text);
    outline: none;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

.error-message[b-3pfwpwz8kk] {
    color: var(--accent);
    font-size: 13px;
    margin: 12px 0 0;
    padding: 10px 12px;
    background: rgba(255, 61, 134, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 61, 134, 0.15);
}

/* Photo modal */
.photo-modal[b-3pfwpwz8kk] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 24, 40, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.photo-modal .modal-content[b-3pfwpwz8kk] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.photo-modal .modal-content img[b-3pfwpwz8kk] {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
}

.photo-modal .close-btn[b-3pfwpwz8kk] {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.photo-description[b-3pfwpwz8kk] {
    color: white;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 520px) {
    .split[b-3pfwpwz8kk] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/AnnouncementsList.razor.rz.scp.css */
.announcements-section[b-tustoxy6ge] {
    padding: 40px 0 60px;
}

.announcements-title[b-tustoxy6ge] {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 24px;
    color: var(--text);
}

.announcements-empty[b-tustoxy6ge] {
    color: var(--muted);
    font-size: 1rem;
    text-align: center;
    padding: 40px 0;
}

.announcements-list[b-tustoxy6ge] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-card[b-tustoxy6ge] {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.announcement-card:hover[b-tustoxy6ge] {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
}

.announcement-avatar[b-tustoxy6ge] {
    flex-shrink: 0;
}

.avatar-placeholder[b-tustoxy6ge] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 61, 134, 0.2);
}

.announcement-content[b-tustoxy6ge] {
    flex: 1;
    min-width: 0;
}

.announcement-name[b-tustoxy6ge] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
}

.announcement-description[b-tustoxy6ge] {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0 0 12px;
    line-height: 1.5;
}

.announcement-meta[b-tustoxy6ge] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
}

.meta-item[b-tustoxy6ge] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meta-icon[b-tustoxy6ge] {
    font-size: 1rem;
}

.meta-divider[b-tustoxy6ge] {
    color: var(--line);
}

@media (max-width: 600px) {
    .announcement-card[b-tustoxy6ge] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .announcement-meta[b-tustoxy6ge] {
        gap: 6px;
    }
    
    .meta-divider[b-tustoxy6ge] {
        display: none;
    }
    
    .meta-item[b-tustoxy6ge] {
        background: rgba(255, 255, 255, 0.5);
        padding: 4px 8px;
        border-radius: 8px;
        border: 1px solid var(--line);
    }
}
/* /Components/Shared/ChatPopup.razor.rz.scp.css */
.chat-modal[b-am1tdk6zp6] {
    width: min(520px, 100%);
    height: min(600px, 85vh);
    display: flex;
    flex-direction: column;
}

/* ── Recipient header ── */
.chat-recipient[b-am1tdk6zp6] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-recipient-avatar[b-am1tdk6zp6] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── Messages area ── */
.chat-modal-messages[b-am1tdk6zp6] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8f9ff;
}

.chat-modal-loading[b-am1tdk6zp6],
.chat-modal-empty[b-am1tdk6zp6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: var(--muted);
    font-size: 14px;
}

/* ── Message bubbles ── */
.message[b-am1tdk6zp6] {
    display: flex;
    max-width: 75%;
}

.message-own[b-am1tdk6zp6] {
    align-self: flex-end;
}

.message-other[b-am1tdk6zp6] {
    align-self: flex-start;
}

.message-bubble[b-am1tdk6zp6] {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.45;
}

.message-own .message-bubble[b-am1tdk6zp6] {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    border-bottom-right-radius: 4px;
}

.message-other .message-bubble[b-am1tdk6zp6] {
    background: rgba(18, 22, 49, .06);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.message-text[b-am1tdk6zp6] {
    margin: 0;
    word-break: break-word;
}

.message-time[b-am1tdk6zp6] {
    display: block;
    font-size: 11px;
    margin-top: 4px;
    opacity: .65;
    text-align: right;
}

/* ── Input area ── */
.chat-modal-input-area[b-am1tdk6zp6] {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 12px 16px 14px;
    border-top: 1px solid rgba(18, 22, 49, .10);
    background: #ffffff;
}

.chat-modal-input[b-am1tdk6zp6] {
    flex: 1;
    resize: none;
    border: 1px solid rgba(18, 22, 49, .12);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4;
    background: rgba(255, 255, 255, .75);
    color: var(--text);
    outline: none;
    transition: border-color .12s ease;
    max-height: 100px;
}

.chat-modal-input:focus[b-am1tdk6zp6] {
    border-color: var(--accent2);
}

.chat-modal-input[b-am1tdk6zp6]::placeholder {
    color: var(--muted);
}

.chat-modal-send[b-am1tdk6zp6] {
    padding: 10px 18px;
    flex-shrink: 0;
}

.chat-modal-send:disabled[b-am1tdk6zp6] {
    opacity: .5;
    cursor: not-allowed;
}
/* /Components/Shared/FriendRow.razor.rz.scp.css */
.friend-row[b-1kkwv3jpfv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(18, 22, 49, 0.06);
}

.friend-row:last-child[b-1kkwv3jpfv] {
    border-bottom: none;
}

.friend-row-left[b-1kkwv3jpfv] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    flex: 1;
}

.friend-row-left:hover .friend-row-name[b-1kkwv3jpfv] {
    color: var(--accent2);
}

.friend-row-avatar[b-1kkwv3jpfv] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eaff, #d6d9f5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(18, 22, 49, 0.08);
    flex-shrink: 0;
}

.friend-row-avatar img[b-1kkwv3jpfv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.friend-row-initials[b-1kkwv3jpfv] {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(18, 22, 49, 0.45);
}

.friend-row-name[b-1kkwv3jpfv] {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s ease;
}

.friend-row-actions[b-1kkwv3jpfv] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Dropdown */
.dropdown-wrapper[b-1kkwv3jpfv] {
    position: relative;
}

.btn-icon-only[b-1kkwv3jpfv] {
    min-width: 34px;
    padding: 4px 8px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.dropdown-menu[b-1kkwv3jpfv] {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 4px;
    background: #ffffff;
    border: 1px solid rgba(18, 22, 49, 0.12);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
    min-width: 180px;
    z-index: 20;
    padding: 4px;
    animation: dropdown-in-b-1kkwv3jpfv 0.12s ease;
}

@keyframes dropdown-in-b-1kkwv3jpfv {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item[b-1kkwv3jpfv] {
    display: block;
    width: 100%;
    padding: 8px 14px;
    border: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    border-radius: 8px;
    transition: background 0.12s ease;
}

.dropdown-item:hover[b-1kkwv3jpfv] {
    background: rgba(18, 22, 49, 0.05);
}

.dropdown-item.danger[b-1kkwv3jpfv] {
    color: #e53e3e;
}

.dropdown-item.danger:hover[b-1kkwv3jpfv] {
    background: rgba(229, 62, 62, 0.08);
}
/* /Components/Shared/LoginModal.razor.rz.scp.css */
.modal-backdrop[b-q72ukzj0gb] {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(16, 24, 40, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal[b-q72ukzj0gb] {
    width: min(560px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.85));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.modal-head[b-q72ukzj0gb] {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(18, 22, 49, 0.10);
}

.modal-head b[b-q72ukzj0gb] {
    letter-spacing: -0.2px;
    font-size: 1.1rem;
}

.x[b-q72ukzj0gb] {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: rgba(255, 255, 255, 0.85);
    color: rgba(18, 22, 49, 0.92);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: background 0.15s ease;
}

.x:hover[b-q72ukzj0gb] {
    background: rgba(255, 255, 255, 1);
}

.modal-body[b-q72ukzj0gb] {
    padding: 16px;
}

.modal-subtitle[b-q72ukzj0gb] {
    color: var(--muted);
    font-size: 0.95rem;
}

.split[b-q72ukzj0gb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.mini-row[b-q72ukzj0gb] {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mini-row .btn[b-q72ukzj0gb] {
    flex: 1;
}

.hint[b-q72ukzj0gb] {
    font-size: 12px;
    color: rgba(91, 103, 138, 0.90);
}

.hr[b-q72ukzj0gb] {
    height: 1px;
    background: rgba(18, 22, 49, 0.10);
    margin: 14px 0;
}

@media (max-width: 520px) {
    .split[b-q72ukzj0gb] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/PeopleMosaic.razor.rz.scp.css */
.people-mosaic[b-v7lmatfqoz] {
    margin-bottom: 24px;
}

.people-mosaic .section-header[b-v7lmatfqoz] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.people-mosaic .section-header h3[b-v7lmatfqoz] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.people-mosaic .count[b-v7lmatfqoz] {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(18, 22, 49, 0.5);
    background: rgba(18, 22, 49, 0.06);
    padding: 2px 8px;
    border-radius: 10px;
}

.mosaic-grid[b-v7lmatfqoz] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mosaic-item[b-v7lmatfqoz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    width: 68px;
    transition: opacity 0.15s ease;
}

.mosaic-item:hover[b-v7lmatfqoz] {
    opacity: 0.75;
}

.mosaic-avatar[b-v7lmatfqoz] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eaff, #d6d9f5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(18, 22, 49, 0.08);
    flex-shrink: 0;
}

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

.mosaic-initials[b-v7lmatfqoz] {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(18, 22, 49, 0.45);
}

.mosaic-name[b-v7lmatfqoz] {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(18, 22, 49, 0.72);
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Components/Shared/PhotoManager.razor.rz.scp.css */
/* Modal styles for PhotoManager */
.modal-backdrop[b-5o2dh72yqz] {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(16, 24, 40, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal[b-5o2dh72yqz] {
    width: min(560px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: linear-gradient(180deg, #ffffff, #f4f6ff);
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-large[b-5o2dh72yqz] {
    width: min(680px, 100%);
}

.modal-head[b-5o2dh72yqz] {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(18, 22, 49, 0.10);
    background: #ffffff;
    flex-shrink: 0;
}

.modal-head b[b-5o2dh72yqz] {
    letter-spacing: -0.2px;
}

.x[b-5o2dh72yqz] {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: #ffffff;
    color: rgba(18, 22, 49, 0.92);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: background 0.15s ease;
}

.x:hover[b-5o2dh72yqz] {
    background: rgba(245, 245, 245, 1);
}

.modal-body[b-5o2dh72yqz] {
    padding: 16px;
    background: #f8f9ff;
    overflow-y: auto;
    flex: 1;
}

.mini-row[b-5o2dh72yqz] {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mini-row :global(.btn)[b-5o2dh72yqz] {
    flex: 1;
}

/* Upload Section */
.upload-section[b-5o2dh72yqz] {
    margin-bottom: 20px;
}

.drop-zone[b-5o2dh72yqz] {
    display: block;
    border: 2px dashed rgba(18, 22, 49, 0.20);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
}

.drop-zone:hover[b-5o2dh72yqz] {
    border-color: rgba(108, 92, 255, 0.5);
    background: rgba(108, 92, 255, 0.05);
}

/* Dragging state - use :global since class is added by JavaScript */
:global(.drop-zone.dragging)[b-5o2dh72yqz] {
    border-color: #6c5cff !important;
    background: rgba(108, 92, 255, 0.15) !important;
    border-style: solid !important;
}

.drop-zone-content[b-5o2dh72yqz] {
    pointer-events: none;
}

.upload-icon[b-5o2dh72yqz] {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c5cff'%3E%3Cpath d='M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.drop-zone-text[b-5o2dh72yqz] {
    margin: 0 0 8px;
    font-size: 15px;
    color: #121631;
}

.drop-zone-hint[b-5o2dh72yqz] {
    margin: 0;
    font-size: 13px;
    color: #5b678a;
}

.file-input-hidden[b-5o2dh72yqz] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* Pending Files Section - use :global since rendered by JavaScript */
:global(.pending-section)[b-5o2dh72yqz] {
    margin-bottom: 20px;
}

:global(.section-header-small)[b-5o2dh72yqz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #121631;
}

:global(.pending-grid)[b-5o2dh72yqz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

:global(.pending-item)[b-5o2dh72yqz] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(18, 22, 49, 0.12);
    aspect-ratio: 1;
}

:global(.pending-item.has-error)[b-5o2dh72yqz] {
    border-color: #ff3d86;
    background: rgba(255, 61, 134, 0.05);
}

:global(.pending-item img)[b-5o2dh72yqz] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:global(.pending-placeholder)[b-5o2dh72yqz] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 22, 49, 0.05);
}

:global(.file-icon)[b-5o2dh72yqz] {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235b678a'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

:global(.pending-info)[b-5o2dh72yqz] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

:global(.pending-name)[b-5o2dh72yqz] {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

:global(.pending-size)[b-5o2dh72yqz],
:global(.pending-status)[b-5o2dh72yqz] {
    font-size: 10px;
    opacity: 0.8;
}

:global(.pending-error)[b-5o2dh72yqz] {
    font-size: 10px;
    color: #ff8a8a;
}

:global(.remove-btn)[b-5o2dh72yqz] {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s ease;
}

:global(.pending-item:hover .remove-btn)[b-5o2dh72yqz] {
    opacity: 1;
}

:global(.remove-btn:hover)[b-5o2dh72yqz] {
    background: rgba(255, 61, 134, 0.9);
}

/* Existing Photos Section */
.existing-section[b-5o2dh72yqz] {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(18, 22, 49, 0.10);
}

.existing-grid[b-5o2dh72yqz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.existing-item[b-5o2dh72yqz] {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(18, 22, 49, 0.12);
}

.existing-item.is-main[b-5o2dh72yqz] {
    border: 2px solid #ff3d86;
}

.existing-item img[b-5o2dh72yqz] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-badge[b-5o2dh72yqz] {
    position: absolute;
    bottom: 4px;
    left: 4px;
    padding: 3px 8px;
    border-radius: 8px;
    background: #ff3d86;
    color: white;
    font-size: 10px;
    font-weight: 700;
}

/* Messages */
.error-message[b-5o2dh72yqz] {
    color: #ff3d86;
    font-size: 13px;
    margin: 0 0 16px;
    padding: 10px 12px;
    background: rgba(255, 61, 134, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 61, 134, 0.15);
}

.success-message[b-5o2dh72yqz] {
    color: #14c694;
    font-size: 13px;
    margin: 0 0 16px;
    padding: 10px 12px;
    background: rgba(20, 198, 148, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(20, 198, 148, 0.15);
}

/* Responsive adjustments */
@media (max-width: 520px) {
    :global(.pending-grid)[b-5o2dh72yqz] {
        grid-template-columns: repeat(3, 1fr);
    }

    .existing-grid[b-5o2dh72yqz] {
        grid-template-columns: repeat(4, 1fr);
    }

    .drop-zone[b-5o2dh72yqz] {
        padding: 30px 16px;
    }
}
/* /Components/Shared/ProfileCard.razor.rz.scp.css */
.avatar img[b-wfactmdktb] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* /Components/Shared/SignupModal.razor.rz.scp.css */
.modal-backdrop[b-g13g248b8c] {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(16, 24, 40, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal[b-g13g248b8c] {
    width: min(560px, 100%);
    border-radius: 22px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.85));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.modal-head[b-g13g248b8c] {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(18, 22, 49, 0.10);
}

.modal-head b[b-g13g248b8c] {
    letter-spacing: -0.2px;
    font-size: 1.1rem;
}

.x[b-g13g248b8c] {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    border: 1px solid rgba(18, 22, 49, 0.14);
    background: rgba(255, 255, 255, 0.85);
    color: rgba(18, 22, 49, 0.92);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1rem;
    transition: background 0.15s ease;
}

.x:hover[b-g13g248b8c] {
    background: rgba(255, 255, 255, 1);
}

.modal-body[b-g13g248b8c] {
    padding: 16px;
}

.modal-subtitle[b-g13g248b8c] {
    color: var(--muted);
    font-size: 0.95rem;
}

.split[b-g13g248b8c] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.checkbox-label[b-g13g248b8c] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-g13g248b8c] {
    width: auto;
    margin: 0;
}

.mini-row[b-g13g248b8c] {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mini-row .btn[b-g13g248b8c] {
    flex: 1;
}

.hint[b-g13g248b8c] {
    font-size: 12px;
    color: rgba(91, 103, 138, 0.90);
}

.hr[b-g13g248b8c] {
    height: 1px;
    background: rgba(18, 22, 49, 0.10);
    margin: 14px 0;
}

@media (max-width: 520px) {
    .split[b-g13g248b8c] {
        grid-template-columns: 1fr;
    }
}
