/* /Layout/AuthLayout.razor.rz.scp.css */
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-wp9ay9euob] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.philsys-wrapper[b-wp9ay9euob] {
    max-width: 900px; 
    margin: 0 auto !important; 
}
/* /Pages/AIAgentChat/AIChat.razor.rz.scp.css */
/* ============================================
   MAIN CHAT CONTAINER - Full height layout
   ============================================ */
.chat-container[b-aphi7l03nv] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    max-width: 1200px;
    margin: 0 auto;
    background: var(--mud-palette-surface);
    border-radius: 12px;
    overflow: hidden;
}

.chat-grid[b-aphi7l03nv] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ============================================
   CHAT HEADER - Fixed top section
   ============================================ */
.chat-header[b-aphi7l03nv] {
    background: var(--mud-palette-surface);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    z-index: 10;
}

/* Skill selector styling */
.skill-selector[b-aphi7l03nv] {
    min-width: 250px;
}

.skill-select[b-aphi7l03nv] {
    background: var(--mud-palette-background);
}

.skill-select[b-aphi7l03nv]  .mud-input-root {
    font-size: 0.875rem;
}

/* ============================================
   CHAT WINDOW - Scrollable messages area
   ============================================ */
.chat-window[b-aphi7l03nv] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    background: var(--mud-palette-background);
    scroll-behavior: smooth;
}

/* Custom scrollbar for chat window */
.chat-window[b-aphi7l03nv]::-webkit-scrollbar {
    width: 8px;
}

.chat-window[b-aphi7l03nv]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-window[b-aphi7l03nv]::-webkit-scrollbar-thumb {
    background: var(--mud-palette-lines-default);
    border-radius: 4px;
}

.chat-window[b-aphi7l03nv]::-webkit-scrollbar-thumb:hover {
    background: var(--mud-palette-text-secondary);
}

/* ============================================
   MESSAGES CONTAINER - Message list layout
   ============================================ */
.messages[b-aphi7l03nv] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================
   MESSAGE ROW - Individual message container
   ============================================ */
.message-row[b-aphi7l03nv] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideIn-b-aphi7l03nv 0.3s ease-out;
}

/* User messages aligned to right */
.message-row.user[b-aphi7l03nv] {
    flex-direction: row-reverse;
}

/* Assistant messages aligned to left */
.message-row.assistant[b-aphi7l03nv] {
    flex-direction: row;
}

/* Message slide-in animation */
@keyframes slideIn-b-aphi7l03nv {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MESSAGE CONTENT - Bubble and metadata
   ============================================ */
.message-content[b-aphi7l03nv] {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    min-width: 100px;
}

.message-row.user .message-content[b-aphi7l03nv] {
    align-items: flex-end;
}

.message-row.assistant .message-content[b-aphi7l03nv] {
    align-items: flex-start;
}

/* ============================================
   MESSAGE BUBBLES - Chat bubble styling
   ============================================ */
.message-bubble[b-aphi7l03nv] {
    padding: 14px 18px;
    border-radius: 18px;
    word-wrap: break-word;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* User bubble - Primary color background */
.user-bubble[b-aphi7l03nv] {
    background: var(--mud-palette-primary);
    color: white;
    border-bottom-right-radius: 4px;
}

/* Assistant bubble - Surface background */
.assistant-bubble[b-aphi7l03nv] {
    background: var(--mud-palette-surface);
    color: var(--mud-palette-text-primary);
    border: 1px solid var(--mud-palette-lines-default);
    border-bottom-left-radius: 4px;
}

/* Typing bubble with pulsing animation */
.typing-bubble[b-aphi7l03nv] {
    padding: 18px 24px;
}

/* ============================================
   MESSAGE TEXT & HTML CONTENT
   ============================================ */
.message-text[b-aphi7l03nv] {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.6;
}

.message-time[b-aphi7l03nv] {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 6px;
    padding: 0 4px;
}

/* ============================================
   AVATAR STYLING
   ============================================ */
.message-avatar[b-aphi7l03nv] {
    flex-shrink: 0;
    margin-top: 4px;
}

/* ============================================
   FORMATTED HTML CONTENT (Markdown output)
   ============================================ */
.message-html[b-aphi7l03nv] {
    line-height: 1.6;
}

.message-html p[b-aphi7l03nv] {
    margin: 0 0 10px 0;
}

.message-html p:last-child[b-aphi7l03nv] {
    margin-bottom: 0;
}

/* Code blocks with syntax highlighting support */
.message-html pre[b-aphi7l03nv] {
    background: var(--mud-palette-background);
    padding: 12px 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
    border: 1px solid var(--mud-palette-lines-default);
}

.message-html code[b-aphi7l03nv] {
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

.message-html pre code[b-aphi7l03nv] {
    background: transparent;
    padding: 0;
}

/* Tables */
.message-html table[b-aphi7l03nv] {
    border-collapse: collapse;
    width: 100%;
    margin: 10px 0;
    font-size: 0.95em;
}

.message-html table td[b-aphi7l03nv],
.message-html table th[b-aphi7l03nv] {
    border: 1px solid var(--mud-palette-lines-default);
    padding: 8px 12px;
    text-align: left;
}

.message-html table th[b-aphi7l03nv] {
    background: var(--mud-palette-background);
    font-weight: 600;
}

/* Lists */
.message-html ul[b-aphi7l03nv],
.message-html ol[b-aphi7l03nv] {
    padding-left: 24px;
    margin: 8px 0;
}

.message-html ul li[b-aphi7l03nv] {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
}

/* Custom emoji bullet for lists */
.message-html ul li[b-aphi7l03nv]:before {
    content: "?";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--mud-palette-primary);
    font-weight: bold;
}

/* Task list checkboxes */
.message-html input[type="checkbox"][b-aphi7l03nv] {
    transform: scale(1.1);
    margin-right: 8px;
}

/* Blockquotes */
.message-html blockquote[b-aphi7l03nv] {
    border-left: 4px solid var(--mud-palette-primary);
    padding-left: 16px;
    margin: 10px 0;
    color: var(--mud-palette-text-secondary);
    font-style: italic;
}

/* Links */
.message-html a[b-aphi7l03nv] {
    color: var(--mud-palette-primary);
    text-decoration: none;
}

.message-html a:hover[b-aphi7l03nv] {
    text-decoration: underline;
}

/* ============================================
   TYPING INDICATOR - Animated dots
   ============================================ */
.typing-dots[b-aphi7l03nv] {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 4px 0;
}

.typing-dots span[b-aphi7l03nv] {
    width: 8px;
    height: 8px;
    background: var(--mud-palette-text-secondary);
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce-b-aphi7l03nv 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1)[b-aphi7l03nv] {
    animation-delay: 0s;
}

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

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

@keyframes typingBounce-b-aphi7l03nv {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* ============================================
   EMPTY STATE - Initial prompt
   ============================================ */
.empty-state[b-aphi7l03nv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: var(--mud-palette-text-secondary);
    height: 100%;
}

/* ============================================
   CHAT INPUT AREA - Bottom section
   ============================================ */
.chat-input-container[b-aphi7l03nv] {
    background: var(--mud-palette-surface);
    border-top: 1px solid var(--mud-palette-lines-default);
}

.chat-input-wrapper[b-aphi7l03nv] {
    position: relative;
}

/* ============================================
   INPUT FIELD CONTAINER - Flexible layout
   ============================================ */
.input-area[b-aphi7l03nv] {
    position: relative;
}

.input-field-container[b-aphi7l03nv] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--mud-palette-background);
    border: 2px solid var(--mud-palette-lines-default);
    border-radius: 24px;
    padding: 8px 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field-container:focus-within[b-aphi7l03nv] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 3px rgba(var(--mud-palette-primary-rgb), 0.1);
}

/* File attach button */
.attach-button[b-aphi7l03nv] {
    flex-shrink: 0;
}

/* Message input field - grows to fill space */
.message-input[b-aphi7l03nv] {
    flex: 1;
    min-width: 0;
}

/* Remove MudTextField outline since we have custom border */
.message-input[b-aphi7l03nv]  .mud-input-outlined {
    border: none !important;
}

.message-input[b-aphi7l03nv]  .mud-input-root {
    padding: 0 !important;
}

/* Send button */
.send-button[b-aphi7l03nv] {
    flex-shrink: 0;
}

/* ============================================
   FILE PREVIEW - Selected file display
   ============================================ */
.file-preview[b-aphi7l03nv] {
    max-width: 500px;
    animation: slideIn-b-aphi7l03nv 0.3s ease-out;
}

.file-attachment-preview[b-aphi7l03nv] {
    display: flex;
    justify-content: flex-end;
}

/* ============================================
   DOWNLOAD SECTION - AI response file
   ============================================ */
.download-section[b-aphi7l03nv] {
    padding-top: 12px;
    border-top: 1px solid var(--mud-palette-lines-default);
}

/* ============================================
   DRAG & DROP OVERLAY - Visual feedback
   ============================================ */
.drop-zone-overlay[b-aphi7l03nv] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--mud-palette-primary-rgb), 0.1);
    backdrop-filter: blur(4px);
    border: 3px dashed var(--mud-palette-primary);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 100;
    animation: pulse-b-aphi7l03nv 1.5s ease-in-out infinite;
    cursor: pointer;
}

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

/* ============================================
   RESPONSIVE DESIGN - Mobile optimization
   ============================================ */
@media (max-width: 960px) {
    .chat-container[b-aphi7l03nv] {
        height: calc(100vh - 80px);
        border-radius: 0;
    }

    .message-content[b-aphi7l03nv] {
        max-width: 85%;
    }

    .chat-window[b-aphi7l03nv] {
        padding: 16px;
    }

    .messages[b-aphi7l03nv] {
        gap: 16px;
    }

    .file-preview[b-aphi7l03nv] {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .message-content[b-aphi7l03nv] {
        max-width: 90%;
    }

    .message-bubble[b-aphi7l03nv] {
        padding: 12px 16px;
    }

    .chat-window[b-aphi7l03nv] {
        padding: 12px;
    }

    .chat-input-wrapper[b-aphi7l03nv] {
        padding: 12px !important;
    }

    .input-field-container[b-aphi7l03nv] {
        padding: 6px 10px;
    }
}
/* /Pages/Auth/ForgotPassword.razor.rz.scp.css */
.login-container[b-5w2zcbw6gc] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    padding: 20px;
}

.login-header[b-5w2zcbw6gc] {
    text-align: center;
    padding: 40px 40px 20px 40px;
}

.login-logo[b-5w2zcbw6gc] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.login-body[b-5w2zcbw6gc] {
    padding: 0 40px 40px 40px;
}

.login-title[b-5w2zcbw6gc] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-subtitle[b-5w2zcbw6gc] {
    color: #64748b;
    font-size: 14px;
}

.mud-input-root[b-5w2zcbw6gc] {
    border-radius: 12px !important;
}

.divider-text[b-5w2zcbw6gc] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    margin: 24px 0;
}

    .divider-text[b-5w2zcbw6gc]::before,
    .divider-text[b-5w2zcbw6gc]::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider-text span[b-5w2zcbw6gc] {
        padding: 0 12px;
        font-size: 14px;
    }

.footer-links[b-5w2zcbw6gc] {
    text-align: center;
    margin-top: 24px;
    color: #64748b;
    font-size: 14px;
}

    .footer-links a[b-5w2zcbw6gc] {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .footer-links a:hover[b-5w2zcbw6gc] {
            text-decoration: underline;
        }
/* /Pages/Auth/Login.razor.rz.scp.css */
.login-container[b-qhpm2vom3x] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    padding: 20px;
}

.login-header[b-qhpm2vom3x] {
    text-align: center;
    padding: 40px 40px 20px 40px;
}

.login-logo[b-qhpm2vom3x] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.login-body[b-qhpm2vom3x] {
    padding: 0 40px 40px 40px;
}

.login-title[b-qhpm2vom3x] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-subtitle[b-qhpm2vom3x] {
    color: #64748b;
    font-size: 14px;
}

.mud-input-root[b-qhpm2vom3x] {
    border-radius: 12px !important;
}

.divider-text[b-qhpm2vom3x] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    margin: 24px 0;
}

    .divider-text[b-qhpm2vom3x]::before,
    .divider-text[b-qhpm2vom3x]::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider-text span[b-qhpm2vom3x] {
        padding: 0 12px;
        font-size: 14px;
    }

.footer-links[b-qhpm2vom3x] {
    text-align: center;
    margin-top: 24px;
    color: #64748b;
    font-size: 14px;
}

    .footer-links a[b-qhpm2vom3x] {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .footer-links a:hover[b-qhpm2vom3x] {
            text-decoration: underline;
        }
/* /Pages/Auth/Otp.razor.rz.scp.css */
.login-container[b-ljw8bhta5j] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    padding: 20px;
}

.login-header[b-ljw8bhta5j] {
    text-align: center;
    padding: 40px 40px 20px 40px;
}

.login-logo[b-ljw8bhta5j] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.login-body[b-ljw8bhta5j] {
    padding: 0 40px 40px 40px;
}

.login-title[b-ljw8bhta5j] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-subtitle[b-ljw8bhta5j] {
    color: #64748b;
    font-size: 14px;
}

.mud-input-root[b-ljw8bhta5j] {
    border-radius: 12px !important;
}

.divider-text[b-ljw8bhta5j] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    margin: 24px 0;
}

    .divider-text[b-ljw8bhta5j]::before,
    .divider-text[b-ljw8bhta5j]::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider-text span[b-ljw8bhta5j] {
        padding: 0 12px;
        font-size: 14px;
    }

.footer-links[b-ljw8bhta5j] {
    text-align: center;
    margin-top: 24px;
    color: #64748b;
    font-size: 14px;
}

    .footer-links a[b-ljw8bhta5j] {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .footer-links a:hover[b-ljw8bhta5j] {
            text-decoration: underline;
        }
/* /Pages/Auth/Register.razor.rz.scp.css */
.login-container[b-dfi1xftm1j] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    padding: 20px;
}

.login-header[b-dfi1xftm1j] {
    text-align: center;
    padding: 40px 40px 20px 40px;
}

.login-logo[b-dfi1xftm1j] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.login-body[b-dfi1xftm1j] {
    padding: 0 40px 40px 40px;
}

.login-title[b-dfi1xftm1j] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-subtitle[b-dfi1xftm1j] {
    color: #64748b;
    font-size: 14px;
}

.mud-input-root[b-dfi1xftm1j] {
    border-radius: 12px !important;
}

.divider-text[b-dfi1xftm1j] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    margin: 24px 0;
}

    .divider-text[b-dfi1xftm1j]::before,
    .divider-text[b-dfi1xftm1j]::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider-text span[b-dfi1xftm1j] {
        padding: 0 12px;
        font-size: 14px;
    }



.footer-links a[b-dfi1xftm1j] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

    .footer-links a:hover[b-dfi1xftm1j] {
        text-decoration: underline;
    }
/* /Pages/Auth/ResetPassword.razor.rz.scp.css */
.login-container[b-yo98xi10al] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    padding: 20px;
}

.login-header[b-yo98xi10al] {
    text-align: center;
    padding: 40px 40px 20px 40px;
}

.login-logo[b-yo98xi10al] {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient( 90deg, #102247 0%, #2a77ae 50%, #68c0d6 100% ) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.login-body[b-yo98xi10al] {
    padding: 0 40px 40px 40px;
}

.login-title[b-yo98xi10al] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-subtitle[b-yo98xi10al] {
    color: #64748b;
    font-size: 14px;
}

.mud-input-root[b-yo98xi10al] {
    border-radius: 12px !important;
}

.divider-text[b-yo98xi10al] {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    margin: 24px 0;
}

    .divider-text[b-yo98xi10al]::before,
    .divider-text[b-yo98xi10al]::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #e2e8f0;
    }

    .divider-text span[b-yo98xi10al] {
        padding: 0 12px;
        font-size: 14px;
    }


.footer-links a[b-yo98xi10al] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

    .footer-links a:hover[b-yo98xi10al] {
        text-decoration: underline;
    }
/* /Pages/Layout/AuthLayout.razor.rz.scp.css */
/* /Pages/Layout/MainLayout.razor.rz.scp.css */
.page[b-quhgjjdda5] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .collapse[b-vqzda0yjtr] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-vqzda0yjtr] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
