@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';

/* _content/Equitell.Web/Components/Chat/ChatBubble.razor.rz.scp.css */
.cf-chat-history[b-lw9xa0it15] {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 12px;
    max-height: 70vh;
    overflow-y: auto;
}

/* message container */
.cf-msg[b-lw9xa0it15] {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.cf-msg-user[b-lw9xa0it15] {
    align-items: flex-end;
}

.cf-msg-assistant[b-lw9xa0it15] {
    align-items: flex-start;
}

/* bubbles */
.cf-msg-bubble[b-lw9xa0it15] {
    padding: 8px 12px;
    border-radius: 14px;
    max-width: 75%;
    white-space: pre-wrap;
    word-break: break-word;
}

.cf-msg-user .cf-msg-bubble[b-lw9xa0it15] {
    background: #228be6;
    color: white;
    border-bottom-right-radius: 2px;
}

.cf-msg-assistant .cf-msg-bubble[b-lw9xa0it15] {
    background: #ffffff;
    border: 1px solid #dde1f0;
    color: #212529;
    border-bottom-left-radius: 2px;
}

.cf-msg-meta[b-lw9xa0it15] {
    font-size: 0.7rem;
    color: #868e96;
    margin-top: 2px;
}

/* typing indicator */
.cf-thinking span[b-lw9xa0it15] {
    width: 8px;
    height: 8px;
    background: #ced4da;
    display: inline-block;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse-b-lw9xa0it15 1.2s infinite ease-in-out;
}

    .cf-thinking span:nth-child(2)[b-lw9xa0it15] {
        animation-delay: 0.2s;
    }

    .cf-thinking span:nth-child(3)[b-lw9xa0it15] {
        animation-delay: 0.4s;
    }

@keyframes pulse-b-lw9xa0it15 {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .6;
    }
}
/* _content/Equitell.Web/Components/Chat/ChatInput.razor.rz.scp.css */
/* Chat Wrapper */
.cf-chat-wrapper[b-elfl66kgcw] {
    position: sticky;
    bottom: 0;
    padding: 12px 16px;
    background: #f8f9fb;
    z-index: 10;
}

/* Chat input bar */
.cf-chat-bar[b-elfl66kgcw] {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 780px;
    padding: 10px 14px 10px 18px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid #dcdfea;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Text area */
.cf-chat-input[b-elfl66kgcw] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    resize: none;
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

    /* Placeholder */
    .cf-chat-input[b-elfl66kgcw]::placeholder {
        color: #9aa0b8;
    }

/* Focus */
.cf-chat-bar:focus-within[b-elfl66kgcw] {
    border-color: #74c0fc;
    box-shadow: 0 0 0 3px rgba(116,192,252,0.35);
}

/* Send button */
.cf-chat-send[b-elfl66kgcw] {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #4dabf7, #228be6);
    color: white;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(34,139,230,0.35);
    transition: 0.1s ease-out;
}

    .cf-chat-send:hover:not(:disabled)[b-elfl66kgcw] {
        transform: translateY(-1px);
        box-shadow: 0 5px 14px rgba(34,139,230,0.45);
    }

    .cf-chat-send:disabled[b-elfl66kgcw] {
        opacity: 0.4;
        box-shadow: none;
    }

.cf-chat-helper-wrapper[b-elfl66kgcw] {
    width: 100%;
    max-width: 780px;
    margin-top: 16px; /* this creates the gap under the bar */
    padding-left: 4px;
}

.cf-chat-helper[b-elfl66kgcw] {
    font-size: 0.8rem;
    color: #6c757d;
}
/* _content/Equitell.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/*body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: orange;
}*/
*[b-tbdgitfqhy] {
    font-family: 'PT Serif', serif !important;
}


.header[b-tbdgitfqhy] {
    background-color: #0B132B;
    border-bottom: 1px solid #9f7216;
    padding: 3px;
    position: relative;
    z-index: 2;
}

/*.content {
    flex: 1;
    padding:0px 14px 104px 14px;
    min-height: 100vh;
    background: linear-gradient(to bottom, #fff, #d0d0d0);
    background-attachment: fixed;
}*/

.navbar-custom[b-tbdgitfqhy] {
    background-color: #0B132B;
    font-family: Helvetica Neue, Arial, sans-serif;
    padding: 2px 0px 0px 0px;
}

    .navbar-custom .nav-link[b-tbdgitfqhy] {
        font-size: 20px; /* or 15px for a subtle reduction */
        position: relative;
        padding: 0.5rem 1.5rem;
        border-radius: 50px; /* pill shape */
        transition: background-color 0.3s ease, color 0.3s ease;
    }


        .navbar-custom .nav-link:hover[b-tbdgitfqhy] {
            background-color: #003366; /* semi-transparent white */
            color: #fff; /* ensure text stays white */
        }



#blazor-error-ui[b-tbdgitfqhy] {
    color-scheme: light only;
    background: lightyellow;
    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-tbdgitfqhy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Equitell.Web/Components/Pages/Debug.razor.rz.scp.css */

