/* /Layout/Components/CinthiaChat.razor.rz.scp.css */
.cinthia-dock[b-r38re8vw1d] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Toggle Button */
.toggle-btn[b-r38re8vw1d] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toggle-btn:hover[b-r38re8vw1d] {
    transform: scale(1.1);
}

.pulse-glow[b-r38re8vw1d] {
    animation: pulse-b-r38re8vw1d 2s infinite;
}

@keyframes pulse-b-r38re8vw1d {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

/* Chat Container Glassmorphism */
.chat-container[b-r38re8vw1d] {
    width: 380px;
    height: 550px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(25, 25, 35, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #e2e8f0;
}

.fade-in[b-r38re8vw1d] {
    animation: fadeInSlideUp-b-r38re8vw1d 0.4s ease-out forwards;
}

@keyframes fadeInSlideUp-b-r38re8vw1d {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.chat-header[b-r38re8vw1d] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-profile[b-r38re8vw1d] {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.avatar[b-r38re8vw1d] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e1e2d;
    z-index: 2;
    border: 2px solid #4f46e5;
}

.avatar-glow[b-r38re8vw1d] {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4f46e5;
    filter: blur(10px);
    opacity: 0.6;
    z-index: 1;
}

.ai-profile h4[b-r38re8vw1d] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.ai-profile .status[b-r38re8vw1d] {
    font-size: 11px;
    color: #a0aec0;
}

.header-actions[b-r38re8vw1d] {
    display: flex;
    gap: 8px;
}

.header-btn[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-btn:hover[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    color: #fff;
}

.minimize-btn:hover[b-r38re8vw1d] {
    background: rgba(79, 70, 229, 0.4);
    border-color: #4f46e5;
}

.close-btn:hover[b-r38re8vw1d] {
    background: rgba(239, 68, 68, 0.4);
    border-color: #ef4444;
    color: #fff;
}

/* Messages Area */
.chat-messages[b-r38re8vw1d] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-messages[b-r38re8vw1d]::-webkit-scrollbar {
    width: 6px;
}
.chat-messages[b-r38re8vw1d]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.empty-state[b-r38re8vw1d] {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    color: #718096;
}

.empty-state i[b-r38re8vw1d] {
    font-size: 32px;
    margin-bottom: 12px;
    color: #4f46e5;
}

.message[b-r38re8vw1d] {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: slideIn-b-r38re8vw1d 0.3s ease-out forwards;
}

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

.message.user[b-r38re8vw1d] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar[b-r38re8vw1d] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2d3748;
    flex-shrink: 0;
}

.content[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    color: #e2e8f0;
}

.message.user .content[b-r38re8vw1d] {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.ai .content[b-r38re8vw1d] {
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Markdown specific inside content */
[b-r38re8vw1d] .content p { margin: 0 0 8px 0; }
[b-r38re8vw1d] .content p:last-child { margin: 0; }
[b-r38re8vw1d] .content strong { color: #fff; font-weight: 600; }
[b-r38re8vw1d] .content ul { margin: 0; padding-left: 20px; }

/* Typing Indicator */
.typing-indicator .content[b-r38re8vw1d] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px;
}

.dot[b-r38re8vw1d] {
    width: 6px;
    height: 6px;
    background: #a0aec0;
    border-radius: 50%;
    animation: dotPulse-b-r38re8vw1d 1.4s infinite ease-in-out both;
}

.dot:nth-child(1)[b-r38re8vw1d] { animation-delay: -0.32s; }
.dot:nth-child(2)[b-r38re8vw1d] { animation-delay: -0.16s; }

@keyframes dotPulse-b-r38re8vw1d {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Input Area */
.chat-inputarea[b-r38re8vw1d] {
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
}

.glass-input[b-r38re8vw1d] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.glass-input:focus[b-r38re8vw1d] {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.08);
}

.glass-input:disabled[b-r38re8vw1d] {
    opacity: 0.5;
}

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

.send-btn:hover:not(:disabled)[b-r38re8vw1d] {
    background: #6366f1;
}

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

.send-btn:disabled[b-r38re8vw1d] {
    background: rgba(255, 255, 255, 0.1);
    color: #4a5568;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .chat-container[b-r38re8vw1d] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-esd4ccd4sw] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-esd4ccd4sw] {
    margin-top: 5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-content.immersive-mode[b-esd4ccd4sw] {
    margin-top: 0 !important;
    background-color: #121212 !important;
    overflow-x: hidden;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Scoped CSS for NavMenu - Minimal legacy support or specific overrides only */

/* Ensure the toggler is consistently styled if not handled by global CSS */
.navbar-toggler[b-d66az19hr4] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

/* Animations for the toast/notifications section if kept here */
.animate-fade-in[b-d66az19hr4] { 
    animation: fadeIn-b-d66az19hr4 0.8s ease-out; 
}

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