/* /Components/Layout/ChatLayout.razor.rz.scp.css */
.chat-layout[b-cto6laa3l3] {
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.chat-layout__header[b-cto6laa3l3] {
    padding: 1.25rem 2rem;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    border-image-slice: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chat-layout__header:hover[b-cto6laa3l3] {
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.12);
}

.chat-layout__brand[b-cto6laa3l3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f172a;
    letter-spacing: -0.025em;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
}

.chat-layout__brand:hover[b-cto6laa3l3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.chat-layout__brand:hover .brand-icon[b-cto6laa3l3] {
    transform: rotate(15deg) scale(1.15);
}

.chat-layout__brand .brand-icon[b-cto6laa3l3] {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.chat-layout__brand .brand-text[b-cto6laa3l3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    transition: all 0.3s ease;
}

.chat-layout__brand:hover .brand-text[b-cto6laa3l3] {
    -webkit-text-fill-color: #ffffff;
}

.chat-layout__users[b-cto6laa3l3] {
    transition: transform 0.2s ease;
}

.chat-layout__users:hover[b-cto6laa3l3] {
    transform: scale(1.05);
}

.chat-layout__content[b-cto6laa3l3] {
    flex: 1;
    overflow: hidden;
}

@media (max-width: 768px) {
    .chat-layout__header[b-cto6laa3l3] {
        padding: 1rem 1.25rem;
    }

    .chat-layout__brand[b-cto6laa3l3] {
        font-size: 1rem;
        padding: 0.375rem 0.75rem;
    }

    .chat-layout__brand .brand-icon[b-cto6laa3l3] {
        font-size: 1.25rem;
    }
}
/* /Components/Layout/ConversationSidebar.razor.rz.scp.css */
.conversation-sidebar[b-you5pz9gwa] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.sidebar-header[b-you5pz9gwa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title[b-you5pz9gwa] {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.btn-new-chat[b-you5pz9gwa] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: transparent;
    color: #e0e0e0;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-new-chat:hover:not(:disabled)[b-you5pz9gwa] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-new-chat:disabled[b-you5pz9gwa] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.conversation-list[b-you5pz9gwa] {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.loading-placeholder[b-you5pz9gwa],
.empty-state[b-you5pz9gwa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
}

.empty-state .smaller[b-you5pz9gwa] {
    font-size: 0.75rem;
}

.conversation-item[b-you5pz9gwa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 0.25rem;
}

    .conversation-item:hover[b-you5pz9gwa] {
        background-color: rgba(255, 255, 255, 0.08);
    }

    .conversation-item.active[b-you5pz9gwa] {
        background-color: rgba(59, 130, 246, 0.2);
        border-left: 3px solid #3b82f6;
    }

.conversation-content[b-you5pz9gwa] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.conversation-title[b-you5pz9gwa] {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-date[b-you5pz9gwa] {
    font-size: 0.7rem;
    color: #9ca3af;
}

.conversation-actions[b-you5pz9gwa] {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.conversation-item:hover .conversation-actions[b-you5pz9gwa] {
    opacity: 1;
}

.btn-action[b-you5pz9gwa] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-action:hover[b-you5pz9gwa] {
        background: rgba(255, 255, 255, 0.1);
        color: #ef4444;
    }

/* Scrollbar styling */
.conversation-list[b-you5pz9gwa]::-webkit-scrollbar {
    width: 6px;
}

.conversation-list[b-you5pz9gwa]::-webkit-scrollbar-track {
    background: transparent;
}

.conversation-list[b-you5pz9gwa]::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

    .conversation-list[b-you5pz9gwa]::-webkit-scrollbar-thumb:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-axo2kk694p] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-axo2kk694p] {
    flex: 1;
}

.sidebar[b-axo2kk694p] {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
}

.sidebar-brand[b-axo2kk694p] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-link[b-axo2kk694p] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
}

    .brand-link:hover[b-axo2kk694p] {
        text-decoration: none;
        color: #ffffff;
    }

.brand-icon[b-axo2kk694p] {
    font-size: 1.5rem;
}

.brand-text[b-axo2kk694p] {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.top-row[b-axo2kk694p] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-axo2kk694p]  a, .top-row[b-axo2kk694p]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-axo2kk694p]  a:hover, .top-row[b-axo2kk694p]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-axo2kk694p]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-axo2kk694p] {
        justify-content: space-between;
    }

    .top-row[b-axo2kk694p]  a, .top-row[b-axo2kk694p]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-axo2kk694p] {
        flex-direction: row;
    }

    .sidebar[b-axo2kk694p] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-axo2kk694p] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-axo2kk694p]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-axo2kk694p], article[b-axo2kk694p] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-axo2kk694p] {
    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-axo2kk694p] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-h3f4e0bxt7] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-h3f4e0bxt7] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-h3f4e0bxt7] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-h3f4e0bxt7] {
    font-size: 1.1rem;
}

.bi[b-h3f4e0bxt7] {
    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-h3f4e0bxt7] {
    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-h3f4e0bxt7] {
    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-h3f4e0bxt7] {
    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-h3f4e0bxt7] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-h3f4e0bxt7] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-h3f4e0bxt7] {
        padding-bottom: 1rem;
    }

    .nav-item[b-h3f4e0bxt7]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-h3f4e0bxt7]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-h3f4e0bxt7]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-h3f4e0bxt7] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-h3f4e0bxt7] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-h3f4e0bxt7] {
        display: none;
    }

    .nav-scrollable[b-h3f4e0bxt7] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-s55sm2tl4w],
.components-reconnect-repeated-attempt-visible[b-s55sm2tl4w],
.components-reconnect-failed-visible[b-s55sm2tl4w],
.components-pause-visible[b-s55sm2tl4w],
.components-resume-failed-visible[b-s55sm2tl4w],
.components-rejoining-animation[b-s55sm2tl4w] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-retrying[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-failed[b-s55sm2tl4w],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-s55sm2tl4w] {
    display: block;
}


#components-reconnect-modal[b-s55sm2tl4w] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-s55sm2tl4w 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-s55sm2tl4w 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-s55sm2tl4w 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-s55sm2tl4w]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-s55sm2tl4w 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-s55sm2tl4w {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-s55sm2tl4w {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-s55sm2tl4w {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-s55sm2tl4w] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-s55sm2tl4w] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-s55sm2tl4w] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-s55sm2tl4w] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-s55sm2tl4w] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-s55sm2tl4w] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-s55sm2tl4w] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-s55sm2tl4w 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-s55sm2tl4w] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-s55sm2tl4w {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home Layout with Conversation Sidebar */
.home-layout[b-brihhng5db] {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    gap: 0;
    background-color: #f8fafc;
}

.conversation-panel[b-brihhng5db] {
    width: 280px;
    min-width: 280px;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border-right: 1px solid #e2e8f0;
}

.main-content[b-brihhng5db] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    overflow-y: auto;
}

/* Modern Chat Interface */
.chat-panel[b-brihhng5db] {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 500px; /* Ensure chat remains readable */
    max-height: 600px; /* Prevent chat from taking too much space */
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.chat-scroll-area[b-brihhng5db] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chat-message[b-brihhng5db] {
    display: flex;
    gap: 1rem;
    max-width: 85%;
}

.chat-message.user[b-brihhng5db] {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-avatar[b-brihhng5db] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.chat-message.user .chat-avatar[b-brihhng5db] {
    background-color: #2563eb;
    color: white;
}

.chat-message.assistant .chat-avatar[b-brihhng5db] {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.chat-bubble[b-brihhng5db] {
    padding: 1rem 1.25rem;
    border-radius: 1.25rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.95rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.chat-message.user .chat-bubble[b-brihhng5db] {
    background-color: #2563eb;
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.chat-message.assistant .chat-bubble[b-brihhng5db] {
    background-color: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 0.25rem;
}

.chat-timestamp[b-brihhng5db] {
    font-size: 0.75rem;
    margin-top: 0.4rem;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.chat-input-area[b-brihhng5db] {
    padding: 1.25rem;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.chat-input-wrapper[b-brihhng5db] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.chat-input-wrapper:focus-within[b-brihhng5db] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #ffffff;
}

.chat-input[b-brihhng5db] {
    flex: 1;
    border: none;
    background: transparent;
    resize: none;
    max-height: 120px;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-input:focus[b-brihhng5db] {
    outline: none;
}

.chat-input[b-brihhng5db]::placeholder {
    color: #94a3b8;
}

.chat-send-btn[b-brihhng5db] {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: #2563eb;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, transform 0.1s;
    flex-shrink: 0;
    cursor: pointer;
}

.chat-send-btn:hover:not(:disabled)[b-brihhng5db] {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.chat-send-btn:disabled[b-brihhng5db] {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

/* Recommendations Section */
.recommendations-section[b-brihhng5db] {
    margin-top: 3rem;
}

.recommendation-heading[b-brihhng5db] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.recommendation-options[b-brihhng5db] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.option-card[b-brihhng5db] {
    border: 1px solid #e2e8f0; /* Lighter border default */
    border-radius: 1.25rem;
    padding: 1.5rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 240px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-top-width: 4px; /* Only top border is colored */
}

.option-card:hover[b-brihhng5db] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.option-card.selected[b-brihhng5db] {
    box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.3);
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #3b82f6; /* Force blue border on selected if needed, or rely on inline style */
}

.option-pill[b-brihhng5db] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.option-card.selected .option-pill[b-brihhng5db] {
    background: #eff6ff;
    color: #2563eb;
}

.option-title[b-brihhng5db] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.option-total[b-brihhng5db] {
    font-size: 0.95rem;
    color: #64748b;
}

.option-person[b-brihhng5db] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.option-person .text-muted[b-brihhng5db] {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.option-icons[b-brihhng5db] {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.option-cta[b-brihhng5db] {
    margin-top: auto;
    border-radius: 0.75rem;
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.option-cta:hover[b-brihhng5db] {
    background: #334155;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.experience-card[b-brihhng5db] {
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.4);
    min-height: 100%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    color: #0f172a;
}

.experience-title[b-brihhng5db] {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.experience-text[b-brihhng5db] {
    font-size: 1rem;
    line-height: 1.8;
    color: #0f172a;
    margin-bottom: 1rem;
}

.experience-details[b-brihhng5db] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-section[b-brihhng5db] {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.experience-header[b-brihhng5db] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.experience-note[b-brihhng5db] {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.experience-actions[b-brihhng5db] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.experience-copy-btn[b-brihhng5db] {
    border: 1px solid #94a3b8;
    background: transparent;
    color: #0f172a;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.experience-copy-btn:hover[b-brihhng5db] {
    border-color: #2563eb;
    color: #2563eb;
}

.copy-feedback[b-brihhng5db] {
    font-size: 0.75rem;
    color: #059669;
}

.experience-section h5[b-brihhng5db] {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
}

.experience-section ul[b-brihhng5db] {
    margin: 0;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: #334155;
    font-size: 0.95rem;
}

.experience-section li[b-brihhng5db] {
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.transfer-heading[b-brihhng5db] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 0.75rem;
}

.transfer-divider[b-brihhng5db] {
    border-top: 1px solid #e2e8f0;
    list-style: none;
    margin: 0.6rem 0;
    height: 0;
    padding: 0;
}

.experience-section li strong[b-brihhng5db] {
    font-weight: 600;
}

.experience-section.emoji-vols[b-brihhng5db]::before {
    content: "✈️";
    margin-right: 0.4rem;
}

.experience-section.emoji-lodging[b-brihhng5db]::before {
    content: "🏨";
    margin-right: 0.4rem;
}

.experience-section.emoji-ticket[b-brihhng5db]::before {
    content: "🎟️";
    margin-right: 0.4rem;
}

.experience-section.emoji-transfers[b-brihhng5db]::before {
    content: "🚗";
    margin-right: 0.4rem;
}

.experience-section.emoji-activities[b-brihhng5db]::before {
    content: "🎯";
    margin-right: 0.4rem;
}

.experience-section.emoji-comfort[b-brihhng5db]::before {
    content: "💼";
    margin-right: 0.4rem;
}

.experience-list[b-brihhng5db] {
    margin: 1.5rem 0 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    list-style: none;
}

.experience-list li[b-brihhng5db] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #475569;
}

.experience-list li[b-brihhng5db]::before {
    content: "•";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0ea5e9;
    font-size: 0.65rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.detail-stack[b-brihhng5db] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-card[b-brihhng5db] {
    border-radius: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    transition: transform 0.2s;
}

.detail-card:hover[b-brihhng5db] {
    transform: translateX(4px);
}

.detail-card .detail-heading[b-brihhng5db] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.detail-title[b-brihhng5db] {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.detail-btn[b-brihhng5db] {
    padding: 0;
    font-weight: 600;
    color: #2563eb;
    margin-top: 0.5rem;
    display: inline-block;
}

.detail-btn:hover[b-brihhng5db] {
    color: #1d4ed8;
}

.flight-modal-backdrop[b-brihhng5db] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
    background: rgba(15, 23, 42, 0.6);
}

.flight-modal-dialog[b-brihhng5db] {
    width: min(640px, 100%);
    max-height: 85vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flight-modal-header[b-brihhng5db] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.flight-modal-body[b-brihhng5db] {
    padding: 1.5rem;
    overflow-y: auto;
}

.flight-modal-dialog.activity-modal-dialog[b-brihhng5db] {
    width: min(760px, 100%) !important;
    max-width: 760px;
    max-height: 92vh !important;
    border-radius: 30px;
    padding: 0;
}

.flight-modal-header[b-brihhng5db] {
    background: #f5f7fb;
    border-bottom: none;
}

.flight-modal-body[b-brihhng5db] {
    padding: 1.5rem;
    overflow-y: auto;
}

.flight-modal-body.activity-body[b-brihhng5db] {
    background: #f6f7fb;
}

.activity-search-bar[b-brihhng5db] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.85rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    margin-bottom: 1rem;
}

.activity-search-icon[b-brihhng5db] {
    font-size: 0.95rem;
    color: #94a3b8;
}

.activity-search-input[b-brihhng5db] {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.9rem;
    color: #0f172a;
}

.activity-search-input:focus[b-brihhng5db] {
    outline: none;
    box-shadow: none;
}

.activity-grid[b-brihhng5db] {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.activity-card[b-brihhng5db] {
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 1rem 1.25rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.activity-card.selected[b-brihhng5db] {
    border-color: #4f46e5;
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.15);
}

.activity-label[b-brihhng5db] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.activity-content[b-brihhng5db] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.activity-description[b-brihhng5db] {
    color: #475467;
    font-size: 0.9rem;
    line-height: 1.5;
}

.activity-title[b-brihhng5db] {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.activity-price[b-brihhng5db] {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2563eb;
}

.activity-price-block[b-brihhng5db] {
    text-align: right;
}

.activity-footer[b-brihhng5db] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.activity-footer .badge[b-brihhng5db] {
    border-radius: 999px;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
}

.flight-modal-footer[b-brihhng5db] {
    border-top: none;
}

.flight-modal-option[b-brihhng5db] {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    transition: all 0.2s;
}

.flight-modal-option:hover[b-brihhng5db] {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.flight-modal-option.selected[b-brihhng5db] {
    border-color: #3b82f6;
    background: #eff6ff;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.detail-card.detail-transfer[b-brihhng5db] {
    border-left-color: #10b981;
}

.transfer-legs[b-brihhng5db] {
    display: grid;
    gap: 1rem;
}

.transfer-leg[b-brihhng5db] {
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    background: #f8fafc;
}

.transfer-leg-summary[b-brihhng5db] {
    border: none;
    padding: 0;
    background: transparent;
}

.transfer-direction-badge[b-brihhng5db] {
    text-transform: uppercase;
    font-size: 0.65rem;
}

.transfer-list[b-brihhng5db] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Confirmation Summary Styles */
.confirmation-summary[b-brihhng5db] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1.25rem;
    padding: 0;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-header[b-brihhng5db] {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-icon[b-brihhng5db] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.confirmation-header h3[b-brihhng5db] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.confirmation-section[b-brihhng5db] {
    background: rgba(255, 255, 255, 0.95);
    margin: 1rem;
    border-radius: 0.875rem;
    padding: 1.25rem;
    color: #1e293b;
}

.section-title[b-brihhng5db] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.section-icon[b-brihhng5db] {
    font-size: 1.5rem;
}

.section-content[b-brihhng5db] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row[b-brihhng5db] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.info-row .label[b-brihhng5db] {
    font-weight: 500;
    color: #64748b;
    min-width: 140px;
}

.info-row .value[b-brihhng5db] {
    font-weight: 600;
    color: #1e293b;
}

.services-grid[b-brihhng5db] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.service-item[b-brihhng5db] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 0.625rem;
    border: 1px solid #e2e8f0;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s ease;
}

.service-item:hover[b-brihhng5db] {
    background: #eff6ff;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.service-icon[b-brihhng5db] {
    font-size: 1.25rem;
}

.confirmation-footer[b-brihhng5db] {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-prompt[b-brihhng5db] {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem;
    border-radius: 0.875rem;
    color: #1e293b;
}

.prompt-icon[b-brihhng5db] {
    font-size: 2rem;
    flex-shrink: 0;
}

.prompt-text[b-brihhng5db] {
    flex: 1;
}

.prompt-text strong[b-brihhng5db] {
    display: block;
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.prompt-text p[b-brihhng5db] {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    color: #475569;
}

.prompt-text p strong[b-brihhng5db] {
    display: inline;
    font-size: inherit;
    color: #3b82f6;
    font-weight: 600;
}

.prompt-text .text-muted[b-brihhng5db] {
    color: #94a3b8;
    font-size: 0.875rem;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.auth-container[b-swpghtqmsj] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
}

.auth-card[b-swpghtqmsj] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
}

.auth-title[b-swpghtqmsj] {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.user-info[b-swpghtqmsj] {
    padding: 0.5rem 1rem;
}

.user-email[b-swpghtqmsj] {
    font-size: 0.875rem;
}

.auth-links[b-swpghtqmsj] {
    display: flex;
    align-items: center;
}
