/* _content/LetMeIn/Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================================================
   MAIN LAYOUT COMPONENT STYLES
   ============================================================================ */

#blazor-error-ui[b-dctzxm779k] {
    color-scheme: dark only;
    background: darkslategray;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-dctzxm779k] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/LetMeIn/Components/Pages/Game.razor.rz.scp.css */
/* ============================================================================
   GAME CHAT COMPONENT STYLES
   ============================================================================ */

.chat-container[b-qegrph75gg] {
    display: flex;
    flex-direction: column;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* ============================================================================
   CHAT MESSAGES AREA
   ============================================================================ */

.chat-messages[b-qegrph75gg] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background-color: white;
}

.message[b-qegrph75gg] {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: slideIn-b-qegrph75gg 0.3s ease-out;
}

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


.message-player[b-qegrph75gg] {
    justify-content: flex-end;
}

.message-player .message-content[b-qegrph75gg] {
    background-color: #1890ff;
    color: #ffffff;
    border: 1px solid #1890ff;
    border-radius: 12px;
    padding: 10px 14px;
    max-width: 70%;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.message-ai[b-qegrph75gg] {
    justify-content: flex-start;
}

.message-ai .message-avatar[b-qegrph75gg] {
    font-size: 24px;
    flex-shrink: 0;
}

.message-ai .message-content[b-qegrph75gg] {
    background-color: #f0f2f5;
    color: #000000d9;
    border-radius: 12px;
    padding: 10px 14px;
    max-width: 70%;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


/* ============================================================================
   CHAT INPUT AREA
   ============================================================================ */

.chat-input-area[b-qegrph75gg] {
    background-color: #fafafa;
    padding: 16px;
    border-top: 1px solid #f0f0f0;
}

.chat-input-wrapper[b-qegrph75gg] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input[b-qegrph75gg] {
    flex: 1;
}

.chat-send-button[b-qegrph75gg] {
    flex-shrink: 0;
    min-width: 80px;
}
/* _content/LetMeIn/Components/Pages/IntroductionWizard.razor.rz.scp.css */
/* ============================================================================
   INTRODUCTION WIZARD COMPONENT STYLES
   ============================================================================ */

.baseLay[b-e2k5ttfq2z] {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}


/* ============================================================================
   BACKGROUND LAYER STYLES
   ============================================================================ */

.bg-layer[b-e2k5ttfq2z] {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transition: opacity 500ms ease;
    opacity: 1;
    z-index: 0;
}

.bg-layer.next[b-e2k5ttfq2z] {
    opacity: 0;
    z-index: 1;
}

.bg-layer.next.visible[b-e2k5ttfq2z] {
    opacity: 1;
}


/* ============================================================================
   UTILITY STYLES
   ============================================================================ */

.preload[b-e2k5ttfq2z] {
    display: none;
}


/* ============================================================================
   BUTTON CONTAINER
   ============================================================================ */

.button-container[b-e2k5ttfq2z] {
    display: flex;
    justify-content: space-between;
    padding-top: 4px;
}
