/* _content/Domalys.Api/Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-2vfrxidp4e] {
    --domalys-primary: #0078d4;
    --domalys-dark: #1e293b;
    --header-height: 50px;
    --footer-height: 100px;
    /* Increased height */
    --bg-color: #f8fafc;
}

.app-container[b-2vfrxidp4e] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--bg-color);
    font-family: 'Segoe UI', sans-serif;
}

.domalys-header[b-2vfrxidp4e] {
    height: var(--header-height);
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    z-index: 2000;
    position: relative;
}

.logo-img[b-2vfrxidp4e] {
    height: auto;
    width: 100px;
    object-fit: contain;
}

.user-profile[b-2vfrxidp4e] {
    display: flex;
    align-items: center;
}

.avatar-button[b-2vfrxidp4e] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.avatar-button:hover[b-2vfrxidp4e] {
    transform: scale(1.1);
    opacity: 0.9;
}

.avatar-button:active[b-2vfrxidp4e] {
    transform: scale(0.95);
}

.avatar-circle[b-2vfrxidp4e] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.avatar-button:hover .avatar-circle[b-2vfrxidp4e] {
    border-color: var(--domalys-primary);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.avatar-circle img[b-2vfrxidp4e] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content[b-2vfrxidp4e] {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.domalys-footer[b-2vfrxidp4e] {
    height: var(--footer-height);
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    /* Larger text */
    color: #64748b;
    padding: 0 2rem;
}

.footer-content[b-2vfrxidp4e] {
    display: flex;
    gap: 1.5rem;
    /* More spacing */
    align-items: center;
    flex-wrap: wrap;
    /* Responsive wrap */
    justify-content: center;
}

.footer-content a[b-2vfrxidp4e] {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-content a:hover[b-2vfrxidp4e] {
    color: var(--domalys-primary);
    text-decoration: underline;
}
/* _content/Domalys.Api/Components/Layout/UserProfileMenu.razor.rz.scp.css */
    .user-profile[b-y70d5ezasz] {
        position: relative;
    }

    /* Avatar Button Styles - Moved from app.css/MainLayout if needed, ensuring they are present */
    .avatar-button[b-y70d5ezasz] {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        border-radius: 50%;
        transition: transform 0.2s;
    }

    .avatar-button:hover[b-y70d5ezasz] {
        transform: scale(1.05);
    }

    .avatar-circle[b-y70d5ezasz] {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

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

    .user-dropdown[b-y70d5ezasz] {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        min-width: 200px;
        z-index: 1000;
        padding: 0.5rem 0;
        animation: fadeIn-b-y70d5ezasz 0.1s ease-out;
    }

    .dropdown-item[b-y70d5ezasz] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        padding: 0.75rem 1rem;
        text-align: left;
        background: none;
        border: none;
        color: #475569;
        font-size: 0.95rem;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
    }

    .dropdown-item:hover[b-y70d5ezasz] {
        background: #f1f5f9;
        color: #0f172a;
    }

    .dropdown-divider[b-y70d5ezasz] {
        height: 1px;
        background: #e2e8f0;
        margin: 0.25rem 0;
    }

    .dropdown-header[b-y70d5ezasz] {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        color: #1e293b;
        background: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
    }

    .login-btn[b-y70d5ezasz] {
        background: #0078d4;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background 0.2s;
        display: inline-block;
    }

    .login-btn:hover[b-y70d5ezasz] {
        background: #0062b0;
        color: white;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
/* _content/Domalys.Api/Components/Pages/Home.razor.rz.scp.css */
    .chat-wrapper[b-xlqa1awjx4] {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: 1000px;
        margin: 0 auto;
        width: 100%;
        background: white;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
    }

    .messages-container[b-xlqa1awjx4] {
        flex: 1;
        overflow-y: auto;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .welcome-screen[b-xlqa1awjx4] {
        margin: auto;
        text-align: center;
        max-width: 600px;
        animation: fadeIn-b-xlqa1awjx4 0.5s ease-out;
    }

    .welcome-icon[b-xlqa1awjx4] {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .welcome-screen h2[b-xlqa1awjx4] {
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .sub-text[b-xlqa1awjx4] {
        color: #64748b;
        margin-bottom: 2rem;
    }

    .suggestions[b-xlqa1awjx4] {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .suggestion-chip[b-xlqa1awjx4] {
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        cursor: pointer;
        color: #475569;
        font-size: 0.9rem;
        transition: all 0.2s;
    }

    .suggestion-chip:hover[b-xlqa1awjx4] {
        background: #e2e8f0;
        color: #0f172a;
    }

    .message-row[b-xlqa1awjx4] {
        display: flex;
        gap: 1rem;
        align-items: flex-end;
    }

    .user-row[b-xlqa1awjx4] {
        justify-content: flex-end;
    }

    .bot-row[b-xlqa1awjx4] {
        justify-content: flex-start;
    }

    .bot-avatar[b-xlqa1awjx4] {
        width: 36px;
        height: 36px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        flex-shrink: 0;
        padding: 4px;
    }

    .bot-avatar img[b-xlqa1awjx4] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .message-bubble[b-xlqa1awjx4] {
        padding: 1rem 1.25rem;
        border-radius: 1.25rem;
        max-width: 70%;
        line-height: 1.5;
        font-size: 0.95rem;
        position: relative;
    }

    .user-bubble[b-xlqa1awjx4] {
        background: #0078d4;
        color: white;
        border-bottom-right-radius: 0.25rem;
    }

    .bot-bubble[b-xlqa1awjx4] {
        background: #f1f5f9;
        color: #1e293b;
        border-bottom-left-radius: 0.25rem;
    }

    .input-container[b-xlqa1awjx4] {
        padding: 1.5rem 2rem;
        background: white;
        border-top: 1px solid #f1f5f9;
    }

    .input-box[b-xlqa1awjx4] {
        display: flex;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 1rem;
        padding: 0.5rem;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .input-box:focus-within[b-xlqa1awjx4] {
        border-color: #0078d4;
        box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
        background: white;
    }

    .input-box input[b-xlqa1awjx4] {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.8rem;
        font-size: 1rem;
        outline: none;
        color: #1e293b;
    }

    .send-btn[b-xlqa1awjx4] {
        background: #0078d4;
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: transform 0.1s, background 0.2s;
    }

    .send-btn:hover:not(:disabled)[b-xlqa1awjx4] {
        background: #0062b0;
    }

    .send-btn:active:not(:disabled)[b-xlqa1awjx4] {
        transform: scale(0.95);
    }

    .send-btn:disabled[b-xlqa1awjx4] {
        background: #cbd5e1;
        cursor: default;
    }

    .icon[b-xlqa1awjx4] {
        width: 20px;
        height: 20px;
    }

    .disclaimer[b-xlqa1awjx4] {
        text-align: center;
        font-size: 0.75rem;
        color: #94a3b8;
        margin-top: 0.75rem;
    }

    /* Animation Loading */
    .loading .dot[b-xlqa1awjx4] {
        width: 6px;
        height: 6px;
        background: #94a3b8;
        border-radius: 50%;
        display: inline-block;
        margin: 0 2px;
        animation: chat-bounce-b-xlqa1awjx4 1.4s infinite ease-in-out both;
    }

    .loading .dot:nth-child(1)[b-xlqa1awjx4] {
        animation-delay: -0.32s;
    }

    .loading .dot:nth-child(2)[b-xlqa1awjx4] {
        animation-delay: -0.16s;
    }

    @keyframes chat-bounce-b-xlqa1awjx4 {

        0%,
        80%,
        100% {
            transform: scale(0);
        }

        40% {
            transform: scale(1);
        }
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Markdown Styles */
    .bot-bubble p[b-xlqa1awjx4] {
        margin-bottom: 0.5rem;
    }

    .bot-bubble p:last-child[b-xlqa1awjx4] {
        margin-bottom: 0;
    }

    .bot-bubble ul[b-xlqa1awjx4],
    .bot-bubble ol[b-xlqa1awjx4] {
        margin: 0.5rem 0 0.5rem 1.5rem;
    }

    .bot-bubble li[b-xlqa1awjx4] {
        margin-bottom: 0.25rem;
    }

    .bot-bubble pre[b-xlqa1awjx4] {
        background: #e2e8f0;
        padding: 0.75rem;
        border-radius: 0.5rem;
        overflow-x: auto;
        font-family: monospace;
        margin: 0.5rem 0;
    }

    .bot-bubble code[b-xlqa1awjx4] {
        background: #e2e8f0;
        padding: 0.1rem 0.3rem;
        border-radius: 0.25rem;
        font-family: monospace;
        font-size: 0.9em;
    }

    .bot-bubble pre code[b-xlqa1awjx4] {
        background: transparent;
        padding: 0;
    }

    .bot-bubble strong[b-xlqa1awjx4] {
        font-weight: 600;
    }

    /* Access Control Styles */
    .disabled-mode .messages-container[b-xlqa1awjx4],
    .disabled-mode .input-container[b-xlqa1awjx4] {
        filter: blur(3px) grayscale(0.8);
        pointer-events: none;
        user-select: none;
    }

    .access-overlay[b-xlqa1awjx4] {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(2px);
    }

    .access-card[b-xlqa1awjx4] {
        background: white;
        padding: 2.5rem;
        border-radius: 1rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 400px;
        border: 1px solid #e2e8f0;
        animation: fadeIn-b-xlqa1awjx4 0.3s ease-out;
    }

    .lock-icon[b-xlqa1awjx4] {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .access-card h3[b-xlqa1awjx4] {
        color: #1e293b;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }

    .access-card p[b-xlqa1awjx4] {
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.5;
    }
/* _content/Domalys.Api/Components/Pages/Legal.razor.rz.scp.css */
.legal-container[b-dk66k4eka9] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    animation: fadeIn-b-dk66k4eka9 0.5s ease-out;
}

.legal-card[b-dk66k4eka9] {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

h1[b-dk66k4eka9] {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
}

.last-updated[b-dk66k4eka9] {
    text-align: center;
    color: #64748b;
    font-style: italic;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

section[b-dk66k4eka9] {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

section:last-child[b-dk66k4eka9] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

h2[b-dk66k4eka9] {
    font-size: 1.4rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
    font-weight: 600;
}

p[b-dk66k4eka9] {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

ul[b-dk66k4eka9] {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li[b-dk66k4eka9] {
    margin-bottom: 0.5rem;
}

strong[b-dk66k4eka9] {
    color: #0f172a;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .legal-container[b-dk66k4eka9] {
        padding: 1rem;
    }

    .legal-card[b-dk66k4eka9] {
        padding: 2rem 1.5rem;
    }

    h1[b-dk66k4eka9] {
        font-size: 1.8rem;
    }
}
/* _content/Domalys.Api/Components/Pages/Login.razor.rz.scp.css */
.login-wrapper[b-ddqo5ihlk8] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8fafc;
    padding: 1rem;
}

.login-card[b-ddqo5ihlk8] {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo-container[b-ddqo5ihlk8] {
    margin-bottom: 2rem;
}

.logo[b-ddqo5ihlk8] {
    height: 48px;
    width: auto;
}

h1[b-ddqo5ihlk8] {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.subtitle[b-ddqo5ihlk8] {
    color: #64748b;
    margin-bottom: 2rem;
}

.providers-list[b-ddqo5ihlk8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.provider-btn[b-ddqo5ihlk8] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: white;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.provider-btn:hover[b-ddqo5ihlk8] {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.provider-btn img[b-ddqo5ihlk8] {
    width: 20px;
    height: 20px;
}

.divider[b-ddqo5ihlk8] {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

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

.divider span[b-ddqo5ihlk8] {
    padding: 0 1rem;
}

.local-login-form[b-ddqo5ihlk8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-control[b-ddqo5ihlk8] {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus[b-ddqo5ihlk8] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.login-submit-btn[b-ddqo5ihlk8] {
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-submit-btn:hover[b-ddqo5ihlk8] {
    background-color: #2563eb;
}

.error-message[b-ddqo5ihlk8] {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: -0.5rem;
}
