/* /Components/Chat/AppointmentProgressStrip.razor.rz.scp.css */
/* ===== Progress Strip ===== */

.progress-strip[b-p4ukvvkbwp] {
    border-top: 1px solid rgba(129, 230, 217, 0.2);
    padding: 0.5rem 1rem;
    background: rgba(248, 247, 255, 0.88);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    animation: slideUp-b-p4ukvvkbwp 0.3s ease-out both;
}

.strip-label[b-p4ukvvkbwp] {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(44, 122, 123, 0.5);
    margin-right: 0.15rem;
    white-space: nowrap;
}

/* ===== Badges ===== */

.field-badge[b-p4ukvvkbwp] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    animation: badgePop-b-p4ukvvkbwp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.field-badge-primary[b-p4ukvvkbwp] {
    background: linear-gradient(135deg, #2c7a7b, #2c7a7b);
    color: #fff;
    box-shadow: 0 2px 8px rgba(44, 122, 123, 0.3);
}

.field-badge-secondary[b-p4ukvvkbwp] {
    background: rgba(44, 122, 123, 0.1);
    color: #4338ca;
    border: 1px solid rgba(44, 122, 123, 0.2);
}

@keyframes slideUp-b-p4ukvvkbwp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

@keyframes badgePop-b-p4ukvvkbwp {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* /Components/Chat/AssistantMessage.razor.rz.scp.css */
.msg-row[b-hdownlg5cu] {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.1rem;
    animation: msgSlideUp-b-hdownlg5cu 0.3s ease-out both;
}

.msg-group[b-hdownlg5cu] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 75%;
}

@media (max-width: 768px) {
    .msg-group[b-hdownlg5cu] {
        max-width: 92%;
    }
}

.msg-header[b-hdownlg5cu] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: -18px;
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

.avatar[b-hdownlg5cu] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #005B33, #009A45);
    color: #E8F5E9;
    box-shadow:
        0 2px 10px rgba(0, 91, 51, 0.35),
        0 0 0 3px rgba(0, 91, 51, 0.12);
    animation: avatarIn-b-hdownlg5cu 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.sender-name[b-hdownlg5cu] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #E8F5E9;
    padding: 0.18rem 0.6rem;
    border-radius: 2rem;
    white-space: nowrap;
    background: linear-gradient(135deg, #005B33, #009A45);
    box-shadow: 0 1px 6px rgba(0, 91, 51, 0.35);
}

.msg-bubble[b-hdownlg5cu] {
    padding: 1.4rem 1rem 0.65rem;
    border-radius: 1.1rem;
    border-bottom-left-radius: 0.3rem;
    font-size: 0.92rem;
    line-height: 1.5;
    word-wrap: break-word;
    width: 100%;
    background: radial-gradient(circle at center, #002E1A 0%, #080C09 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(174, 213, 129, 0.4); /* Light Moss border */
    color: #E8F5E9;
    box-shadow:
        0 4px 24px rgba(0, 46, 26, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    white-space: pre-line;
}

@keyframes msgSlideUp-b-hdownlg5cu {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes avatarIn-b-hdownlg5cu {
    0%   { opacity: 0; transform: scale(0.4) rotate(-15deg); }
    70%  { transform: scale(1.15) rotate(4deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}



/* /Components/Chat/ConfirmCard.razor.rz.scp.css */
.confirm-card[b-c00jvuujxo] {
    padding: 1rem 1.25rem;
    background: rgba(255, 249, 230, 0.88);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    animation: slideUp-b-c00jvuujxo 0.4s ease-out both;
}

.confirm-card h6[b-c00jvuujxo] {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #92400e;
}

.confirm-label[b-c00jvuujxo] {
    color: #78716c;
    font-size: 0.82rem;
}

.confirm-value[b-c00jvuujxo] {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e1b4b;
}

@keyframes slideUp-b-c00jvuujxo {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Chat/MedicalActResultCard.razor.rz.scp.css */
.result-card[b-5scpt3vo4p] {
    margin: 0 1rem 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(var(--neolink-shamrock-rgb), 0.07);
    border: 1px solid rgba(var(--neolink-shamrock-rgb), 0.22);
    border-radius: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: slideUp-b-5scpt3vo4p 0.35s ease-out both;
}

.result-icon[b-5scpt3vo4p] {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.result-act-name[b-5scpt3vo4p] {
    font-size: 1rem;
    color: var(--neolink-shamrock-dark);
    margin: 0;
}

@keyframes slideUp-b-5scpt3vo4p {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* /Components/Chat/SuccessCard.razor.rz.scp.css */
.success-card[b-eoow1t8e1q] {
    padding: 1rem 1.25rem;
    background: rgba(236, 253, 245, 0.88);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-top: 1px solid rgba(16, 185, 129, 0.25);
    animation: slideUp-b-eoow1t8e1q 0.4s ease-out both;
}

.success-icon[b-eoow1t8e1q] {
    font-size: 2rem;
    animation: celebratePop-b-eoow1t8e1q 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.success-card h6[b-eoow1t8e1q] {
    color: #065f46;
    font-weight: 700;
}

@keyframes slideUp-b-eoow1t8e1q {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes celebratePop-b-eoow1t8e1q {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}
/* /Components/Chat/TypingIndicator.razor.rz.scp.css */
.typing-row[b-aiutkodu00] {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.1rem;
    animation: msgSlideUp-b-aiutkodu00 0.3s ease-out both;
}

.msg-group[b-aiutkodu00] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.msg-header[b-aiutkodu00] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: -18px;
    position: relative;
    z-index: 1;
    padding-left: 10px;
}

.avatar[b-aiutkodu00] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #005B33, #009A45);
    color: #E8F5E9;
    box-shadow:
        0 2px 10px rgba(0, 91, 51, 0.35),
        0 0 0 3px rgba(0, 91, 51, 0.12);
}

.sender-name[b-aiutkodu00] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #E8F5E9;
    padding: 0.18rem 0.6rem;
    border-radius: 2rem;
    white-space: nowrap;
    background: linear-gradient(135deg, #005B33, #009A45);
    box-shadow: 0 1px 6px rgba(0, 91, 51, 0.35);
}

.typing-bubble[b-aiutkodu00] {
    background: radial-gradient(circle at center, #002E1A 0%, #080C09 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(174, 213, 129, 0.4);
    padding: 1.4rem 1.2rem 0.6rem;
    border-radius: 1.1rem;
    border-bottom-left-radius: 0.3rem;
    box-shadow:
        0 4px 24px rgba(0, 46, 26, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}

.typing-dot[b-aiutkodu00] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #AED581;
    opacity: 0.4;
    animation: typingPulse-b-aiutkodu00 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2)[b-aiutkodu00] {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3)[b-aiutkodu00] {
    animation-delay: 0.4s;
}

@keyframes msgSlideUp-b-aiutkodu00 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingPulse-b-aiutkodu00 {
    0%, 100% { opacity: 0.3; transform: scale(0.85); }
    50%      { opacity: 1;   transform: scale(1.1); }
}



/* /Components/Chat/UserMessage.razor.rz.scp.css */
.msg-row[b-4ypwuvs87s] {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.1rem;
    animation: msgSlideUp-b-4ypwuvs87s 0.3s ease-out both;
}

.msg-group[b-4ypwuvs87s] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 75%;
}

@media (max-width: 768px) {
    .msg-group[b-4ypwuvs87s] {
        max-width: 92%;
    }
}

.msg-header[b-4ypwuvs87s] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: -18px;
    position: relative;
    z-index: 1;
    padding-right: 10px;
}

.avatar[b-4ypwuvs87s] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #009A45;
    color: #E8F5E9;
    box-shadow: 0 2px 8px rgba(0, 154, 69, 0.45);
    animation: avatarIn-b-4ypwuvs87s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.sender-name[b-4ypwuvs87s] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #E8F5E9;
    padding: 0.18rem 0.6rem;
    border-radius: 2rem;
    white-space: nowrap;
    background: #009A45;
    box-shadow: 0 1px 6px rgba(0, 154, 69, 0.4);
}

.msg-bubble[b-4ypwuvs87s] {
    padding: 1.4rem 1rem 0.65rem;
    border-radius: 1.1rem;
    border-bottom-right-radius: 0.3rem;
    font-size: 0.92rem;
    line-height: 1.5;
    word-wrap: break-word;
    width: 100%;
    background: linear-gradient(135deg, #005B33 0%, #003b22 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(76, 175, 80, 0.45);
    color: #E8F5E9;
    box-shadow:
        0 4px 24px rgba(0, 91, 51, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes msgSlideUp-b-4ypwuvs87s {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes avatarIn-b-4ypwuvs87s {
    0%   { opacity: 0; transform: scale(0.4) rotate(15deg); }
    70%  { transform: scale(1.15) rotate(-4deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}



/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-zmzs1ibiix] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-zmzs1ibiix] {
    flex: 1;
}

.sidebar[b-zmzs1ibiix] {
    background: transparent;
}

@media (min-width: 641px) {
    .page[b-zmzs1ibiix] {
        flex-direction: row;
    }

    .sidebar[b-zmzs1ibiix] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-zmzs1ibiix] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-zmzs1ibiix]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-zmzs1ibiix], article[b-zmzs1ibiix] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-zmzs1ibiix] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-zmzs1ibiix] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ===== Sidebar shell ===== */

.nav-sidebar[b-9bsuppiza2] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(0, 20, 10, 0.85); /* Increased opacity from 0.65 to 0.85 */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
}

.nav-sidebar[b-9bsuppiza2]::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(44, 122, 123, 0.15) 0%, transparent 65%); /* Reduced opacity */
    pointer-events: none;
}

.nav-sidebar[b-9bsuppiza2]::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(129, 230, 217, 0.1) 0%, transparent 65%); /* Reduced opacity */
    pointer-events: none;
}

/* ===== Brand row ===== */

.nav-brand-row[b-9bsuppiza2] {
    position: relative;
    z-index: 1;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(129, 230, 217, 0.1);
    flex-shrink: 0;
}

.nav-brand[b-9bsuppiza2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-gem[b-9bsuppiza2] {
    font-size: 1.3rem;
    color: #4CAF50;
    line-height: 1;
}

.brand-name[b-9bsuppiza2] {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #E8F5E9;
}

/* ===== Mobile toggler ===== */

.navbar-toggler[b-9bsuppiza2] {
    appearance: none;
    cursor: pointer;
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: 1px solid rgba(129, 230, 217, 0.25);
    border-radius: 0.5rem;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28165%2C 180%2C 252%2C 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.4rem rgba(44, 122, 123, 0.1);
    z-index: 2;
}

.navbar-toggler:checked[b-9bsuppiza2] {
    background-color: rgba(44, 122, 123, 0.3);
}

/* ===== Nav scrollable area ===== */

.nav-scrollable[b-9bsuppiza2] {
    display: none;
    position: relative;
    z-index: 1;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0.75rem 1.5rem;
    scrollbar-width: none;
}

.nav-scrollable[b-9bsuppiza2]::-webkit-scrollbar {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-9bsuppiza2] {
    display: block;
}

/* ===== Section label ===== */

.nav-section-label[b-9bsuppiza2] {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(129, 230, 217, 0.35);
    padding: 0.75rem 0.5rem 0.4rem;
    margin: 0;
}

/* ===== Nav items ===== */

.nav-item[b-9bsuppiza2] {
    margin-bottom: 0.4rem;
}

.nav-item[b-9bsuppiza2]  a {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    color: rgba(203, 213, 225, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), 
                color 0.25s ease, 
                transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.25s ease;
    position: relative;
    line-height: 1.4;
    border: 1px solid transparent;
}

.nav-item[b-9bsuppiza2]  a:hover {
    background: rgba(44, 122, 123, 0.08);
    color: rgba(226, 232, 240, 0.95);
    transform: translateX(4px);
    border-color: rgba(44, 122, 123, 0.2);
}

.nav-item[b-9bsuppiza2]  a.active {
    background: rgba(44, 122, 123, 0.15);
    color: #ffffff;
    font-weight: 600;
    border-color: rgba(129, 230, 217, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
                0 4px 12px rgba(44, 122, 123, 0.2);
}

.nav-item[b-9bsuppiza2]  a.active::before {
    content: '';
    position: absolute;
    left: -2px; /* Pull outside to fit layout */
    top: 20%;
    height: 60%;
    width: 4px;
    background: linear-gradient(180deg, #bee3f8, #bee3f8);
    border-radius: 4px; /* Techy pill shape */
    box-shadow: 0 0 12px rgba(129, 230, 217, 0.8);
}

/* ===== Icons ===== */

.bi[b-9bsuppiza2] {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 0.7rem;
    flex-shrink: 0;
    background-size: cover;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    vertical-align: middle;
}

.nav-item[b-9bsuppiza2]  a:hover .bi,
.nav-item[b-9bsuppiza2]  a.active .bi {
    opacity: 1;
}

.bi-house-door-fill[b-9bsuppiza2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a5b4fc' 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-calendar-plus[b-9bsuppiza2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a5b4fc' viewBox='0 0 16 16'%3E%3Cpath d='M8 7a.5.5 0 0 1 .5.5V9H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V10H6a.5.5 0 0 1 0-1h1.5V7.5A.5.5 0 0 1 8 7z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-stars[b-9bsuppiza2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a5b4fc' viewBox='0 0 16 16'%3E%3Cpath d='M7.657 6.247c.11-.33.576-.33.686 0l.645 1.937a2.89 2.89 0 0 0 1.829 1.828l1.936.645c.33.11.33.576 0 .686l-1.937.645a2.89 2.89 0 0 0-1.828 1.829l-.645 1.936a.361.361 0 0 1-.686 0l-.645-1.937a2.89 2.89 0 0 0-1.828-1.828l-1.937-.645a.361.361 0 0 1 0-.686l1.937-.645a2.89 2.89 0 0 0 1.828-1.828l.645-1.937zM3.794 1.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387A1.734 1.734 0 0 0 4.593 5.69l-.387 1.162a.217.217 0 0 1-.412 0L3.407 5.69A1.734 1.734 0 0 0 2.31 4.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387A1.734 1.734 0 0 0 3.407 2.31l.387-1.162zM10.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.753.732.868l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.156 1.156 0 0 0-.732.868l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.156 1.156 0 0 0-.732-.868l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.522.732-.868L10.863.1z'/%3E%3C/svg%3E");
}

.bi-book[b-9bsuppiza2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a5b4fc' viewBox='0 0 16 16'%3E%3Cpath d='M1 2.828c.885-.37 2.154-.769 3.388-.893 1.33-.134 2.458.063 3.112.752v9.746c-.935-.53-2.12-.603-3.213-.493-1.18.12-2.37.461-3.287.811zm7.5-.141c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783'/%3E%3C/svg%3E");
}

.bi-plug[b-9bsuppiza2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a5b4fc' viewBox='0 0 16 16'%3E%3Cpath d='M6 0a.5.5 0 0 1 .5.5V3h3V.5a.5.5 0 0 1 1 0V3h1a.5.5 0 0 1 .5.5v3A3.5 3.5 0 0 1 8.5 10c-.002.434-.01.845-.04 1.22-.041.514-.126 1.003-.317 1.424a2.08 2.08 0 0 1-.97 1.028C6.725 13.9 6.169 14 5.5 14c-.998 0-1.61.33-1.974.718A1.92 1.92 0 0 0 3 16H2c0-.616.232-1.367.797-1.968C3.374 13.42 4.261 13 5.5 13c.581 0 .962-.088 1.218-.219.241-.123.4-.3.514-.55.121-.266.193-.621.23-1.09.027-.34.035-.718.037-1.141A3.5 3.5 0 0 1 4 6.5v-3a.5.5 0 0 1 .5-.5h1V.5A.5.5 0 0 1 6 0M5 4v2.5a2.5 2.5 0 0 0 5 0V4z'/%3E%3C/svg%3E");
}

.bi-search-heart[b-9bsuppiza2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a5b4fc' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 4.482c1.664-1.673 5.825 1.254 0 5.018-5.825-3.764-1.664-6.69 0-5.018Z'/%3E%3Cpath d='M13 6.5a6.471 6.471 0 0 1-1.258 3.844c.04.03.078.062.115.098l3.85 3.85a1 1 0 0 1-1.414 1.415l-3.85-3.85a1.007 1.007 0 0 1-.1-.115h.002A6.5 6.5 0 1 1 13 6.5ZM6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Z'/%3E%3C/svg%3E");
}

.bi-mic-fill[b-9bsuppiza2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a5b4fc' viewBox='0 0 16 16'%3E%3Cpath d='M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0V3z'/%3E%3Cpath d='M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E");
}

.nav-group[b-9bsuppiza2] {
    position: relative;
    margin-bottom: 0.15rem;
    padding-left: 0;
}

.nav-group[b-9bsuppiza2]::before {
    content: '';
    position: absolute;
    left: 1.35rem;
    top: 2.6rem;
    bottom: 0.45rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(129, 230, 217, 0.35) 0%, transparent 100%);
    pointer-events: none;
}

/* ===== Sub-items ===== */

.nav-sub-item[b-9bsuppiza2] {
    padding-left: 1rem;
}

.nav-sub-item[b-9bsuppiza2]  a {
    font-size: 0.815rem;
    color: rgba(203, 213, 225, 0.5);
    padding: 0.45rem 0.65rem;
}

.nav-sub-item[b-9bsuppiza2]  a:hover {
    color: rgba(226, 232, 240, 0.85);
}

.nav-sub-item[b-9bsuppiza2]  a.active {
    color: #e0e7ff;
    font-weight: 500;
    background: rgba(44, 122, 123, 0.12);
}

/* ===== Responsive ===== */

@media (min-width: 641px) {
    .nav-sidebar[b-9bsuppiza2] {
        min-height: 100vh;
    }

    .navbar-toggler[b-9bsuppiza2] {
        display: none;
    }

    .nav-scrollable[b-9bsuppiza2] {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* ===== Home Link Special Styling ===== */
.nav-item-home[b-9bsuppiza2] {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(129, 230, 217, 0.15);
}

.nav-item-home[b-9bsuppiza2]  a.home-link {
    background: rgba(44, 122, 123, 0.25);
    border: 1px solid rgba(129, 230, 217, 0.4);
    box-shadow: 0 4px 12px rgba(44, 122, 123, 0.15);
    color: #ffffff;
    font-weight: 600;
}

.nav-item-home[b-9bsuppiza2]  a.home-link:hover {
    background: rgba(44, 122, 123, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 122, 123, 0.25);
    border-color: rgba(129, 230, 217, 0.6);
}

.nav-item-home[b-9bsuppiza2]  a.home-link.active::before {
    display: none; /* remove the tiny side pill for home link since its custom looking */
}

/* /Components/Pages/Avaliador/AzureFoundryAudioSearch.razor.rz.scp.css */
/* ===== Page Layout ===== */

.page-wrapper[b-6bhwu06ozl] {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== Header ===== */

.chat-header[b-6bhwu06ozl] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chat-header h1[b-6bhwu06ozl] {
    font-weight: 700;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #009A45, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-header p[b-6bhwu06ozl] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== Provider Toggle ===== */

.provider-toggle[b-6bhwu06ozl] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(0, 154, 69, 0.2);
    border-radius: 2rem;
    padding: 0.2rem;
    margin-top: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 154, 69, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ===== Chat Card ===== */

.chat-card[b-6bhwu06ozl] {
    height: 68vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 154, 69, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ===== Messages Area ===== */

.chat-messages[b-6bhwu06ozl] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 154, 69, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.07) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.04) 0%, transparent 60%),
        #f4f4fb;
}

/* Scrollbar */
.chat-messages[b-6bhwu06ozl]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-6bhwu06ozl]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-6bhwu06ozl]::-webkit-scrollbar-thumb {
    background: rgba(0, 154, 69, 0.3);
    border-radius: 3px;
}

.chat-messages[b-6bhwu06ozl]::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 154, 69, 0.5);
}

@media (max-width: 768px) {
    .page-wrapper[b-6bhwu06ozl] {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-top: 0.2rem;
        padding-left: 0;
        padding-right: 0;
        height: calc(100svh - 5rem); /* Ensures chat fits exactly on screen */
        display: flex;
        flex-direction: column;
    }
    .chat-header[b-6bhwu06ozl] {
        margin-bottom: 0.5rem;
        padding: 0 1rem;
        flex-shrink: 0;
    }
    .chat-header h1[b-6bhwu06ozl] {
        font-size: 1.35rem;
    }
    .chat-header p[b-6bhwu06ozl] {
        display: none; /* Save space on mobile */
    }
    .chat-card[b-6bhwu06ozl] {
        height: auto;
        flex: 1 1 0;
        min-height: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .chat-messages[b-6bhwu06ozl] {
        padding: 0.75rem 0.5rem;
    }
}

/* ===== Empty State ===== */

.empty-state[b-6bhwu06ozl] {
    text-align: center;
    color: #adb5bd;
    margin: auto;
    animation: fadeIn-b-6bhwu06ozl 0.6s ease-out;
}

.empty-state-icon[b-6bhwu06ozl] {
    font-size: 3rem;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.empty-state p[b-6bhwu06ozl] {
    font-size: 0.95rem;
}

/* ===== Error ===== */

.error-strip[b-6bhwu06ozl] {
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    animation: slideUp-b-6bhwu06ozl 0.3s ease-out both;
}

/* ===== Input Area ===== */

.chat-input-area[b-6bhwu06ozl] {
    padding: 0.85rem 1rem;
    background: rgba(248, 247, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(76, 175, 80, 0.25);
}

.chat-compose-bar[b-6bhwu06ozl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1.5px solid rgba(0, 154, 69, 0.2);
    border-radius: 2rem;
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    box-shadow: 0 2px 20px rgba(0, 154, 69, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-compose-bar:focus-within[b-6bhwu06ozl] {
    border-color: rgba(0, 154, 69, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 154, 69, 0.1),
                0 4px 24px rgba(0, 154, 69, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.chat-input[b-6bhwu06ozl] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.45rem 0.25rem;
    font-size: 0.92rem;
    color: #1e1b4b;
    min-width: 0;
}

.chat-input:focus[b-6bhwu06ozl] {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.chat-input[b-6bhwu06ozl]::placeholder {
    color: rgba(0, 154, 69, 0.4);
    font-style: italic;
}

.chat-input:disabled[b-6bhwu06ozl] {
    color: rgba(0, 154, 69, 0.35);
    cursor: not-allowed;
}

.chat-input:disabled[b-6bhwu06ozl]::placeholder {
    color: rgba(0, 154, 69, 0.3);
}

.btn-send-icon[b-6bhwu06ozl] {
    font-size: 1.1rem;
}

/* ===== Animations ===== */

@keyframes fadeIn-b-6bhwu06ozl {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes badgePop-b-6bhwu06ozl {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp-b-6bhwu06ozl {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes celebratePop-b-6bhwu06ozl {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}



/* /Components/Pages/Avaliador/AzureFoundryMedicalSearch.razor.rz.scp.css */
/* ===== Page Layout ===== */

.page-wrapper[b-ehx0btdtjr] {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== Header ===== */

.chat-header[b-ehx0btdtjr] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chat-header h1[b-ehx0btdtjr] {
    font-weight: 700;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #009A45, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-header p[b-ehx0btdtjr] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== Provider Toggle ===== */

.provider-toggle[b-ehx0btdtjr] {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(0, 154, 69, 0.2);
    border-radius: 2rem;
    padding: 0.2rem;
    margin-top: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 154, 69, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ===== Chat Card ===== */

.chat-card[b-ehx0btdtjr] {
    height: 68vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 154, 69, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ===== Messages Area ===== */

.chat-messages[b-ehx0btdtjr] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    scroll-behavior: smooth;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 154, 69, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.07) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.04) 0%, transparent 60%),
        #f4f4fb;
}

/* Scrollbar */
.chat-messages[b-ehx0btdtjr]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-ehx0btdtjr]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-ehx0btdtjr]::-webkit-scrollbar-thumb {
    background: rgba(0, 154, 69, 0.3);
    border-radius: 3px;
}

.chat-messages[b-ehx0btdtjr]::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 154, 69, 0.5);
}

@media (max-width: 768px) {
    .page-wrapper[b-ehx0btdtjr] {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-top: 0.2rem;
        padding-left: 0;
        padding-right: 0;
        height: calc(100svh - 5rem); /* Ensures chat fits exactly on screen */
        display: flex;
        flex-direction: column;
    }
    .chat-header[b-ehx0btdtjr] {
        margin-bottom: 0.5rem;
        padding: 0 1rem;
        flex-shrink: 0;
    }
    .chat-header h1[b-ehx0btdtjr] {
        font-size: 1.35rem;
    }
    .chat-header p[b-ehx0btdtjr] {
        display: none; /* Save space on mobile */
    }
    .chat-card[b-ehx0btdtjr] {
        height: auto;
        flex: 1 1 0;
        min-height: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .chat-messages[b-ehx0btdtjr] {
        padding: 0.75rem 0.5rem;
    }
}

/* ===== Empty State ===== */

.empty-state[b-ehx0btdtjr] {
    text-align: center;
    color: #adb5bd;
    margin: auto;
    animation: fadeIn-b-ehx0btdtjr 0.6s ease-out;
}

.empty-state-icon[b-ehx0btdtjr] {
    font-size: 3rem;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.empty-state p[b-ehx0btdtjr] {
    font-size: 0.95rem;
}

/* ===== Error ===== */

.error-strip[b-ehx0btdtjr] {
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    animation: slideUp-b-ehx0btdtjr 0.3s ease-out both;
}

/* ===== Input Area ===== */

.chat-input-area[b-ehx0btdtjr] {
    padding: 0.85rem 1rem;
    background: rgba(248, 247, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(76, 175, 80, 0.25);
}

.chat-compose-bar[b-ehx0btdtjr] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1.5px solid rgba(0, 154, 69, 0.2);
    border-radius: 2rem;
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    box-shadow: 0 2px 20px rgba(0, 154, 69, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-compose-bar:focus-within[b-ehx0btdtjr] {
    border-color: rgba(0, 154, 69, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 154, 69, 0.1),
                0 4px 24px rgba(0, 154, 69, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.chat-input[b-ehx0btdtjr] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.45rem 0.25rem;
    font-size: 0.92rem;
    color: #1e1b4b;
    min-width: 0;
}

.chat-input:focus[b-ehx0btdtjr] {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.chat-input[b-ehx0btdtjr]::placeholder {
    color: rgba(0, 154, 69, 0.4);
    font-style: italic;
}

.chat-input:disabled[b-ehx0btdtjr] {
    color: rgba(0, 154, 69, 0.35);
    cursor: not-allowed;
}

.chat-input:disabled[b-ehx0btdtjr]::placeholder {
    color: rgba(0, 154, 69, 0.3);
}

.btn-send-icon[b-ehx0btdtjr] {
    font-size: 1.1rem;
}

/* ===== Animations ===== */

@keyframes fadeIn-b-ehx0btdtjr {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes badgePop-b-ehx0btdtjr {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp-b-ehx0btdtjr {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes celebratePop-b-ehx0btdtjr {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}



/* /Components/Pages/Avaliador/MedicalActChatDiagnose.razor.rz.scp.css */
/* ===== Page Layout ===== */

.page-wrapper[b-o9ec4ga9sj] {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== Header ===== */

.chat-header[b-o9ec4ga9sj] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chat-header h1[b-o9ec4ga9sj] {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--neolink-fern-dark);
}

.chat-header p[b-o9ec4ga9sj] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

/* ===== Provider Badge ===== */

.diagnose-provider-badge[b-o9ec4ga9sj] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neolink-fern);
    background: rgba(var(--neolink-fern-rgb), 0.08);
    border: 1px solid rgba(var(--neolink-fern-rgb), 0.2);
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
}

.badge-dot[b-o9ec4ga9sj] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neolink-shamrock);
    animation: pulse-dot-b-o9ec4ga9sj 2s ease-in-out infinite;
}

@keyframes pulse-dot-b-o9ec4ga9sj {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ===== Chat Card ===== */

.chat-card[b-o9ec4ga9sj] {
    height: 68vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(var(--neolink-shamrock-rgb), 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ===== Messages Area ===== */

.chat-messages[b-o9ec4ga9sj] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    scroll-behavior: smooth;
    background: var(--neolink-bg-chat);
}

.chat-messages[b-o9ec4ga9sj]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-o9ec4ga9sj]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-o9ec4ga9sj]::-webkit-scrollbar-thumb {
    background: rgba(var(--neolink-shamrock-rgb), 0.30);
    border-radius: 3px;
}

.chat-messages[b-o9ec4ga9sj]::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--neolink-shamrock-rgb), 0.50);
}

@media (max-width: 768px) {
    .page-wrapper[b-o9ec4ga9sj] {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-top: 0.2rem;
        padding-left: 0;
        padding-right: 0;
        height: calc(100svh - 5rem); /* Ensures chat fits exactly on screen */
        display: flex;
        flex-direction: column;
    }
    .chat-header[b-o9ec4ga9sj] {
        margin-bottom: 0.5rem;
        padding: 0 1rem;
        flex-shrink: 0;
    }
    .chat-header h1[b-o9ec4ga9sj] {
        font-size: 1.35rem;
    }
    .chat-header p[b-o9ec4ga9sj] {
        display: none; /* Save space on mobile */
    }
    .chat-card[b-o9ec4ga9sj] {
        height: auto;
        flex: 1 1 0;
        min-height: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .chat-messages[b-o9ec4ga9sj] {
        padding: 0.75rem 0.5rem;
    }
}

/* ===== Empty State ===== */

.empty-state[b-o9ec4ga9sj] {
    text-align: center;
    color: #adb5bd;
    margin: auto;
    animation: fadeIn-b-o9ec4ga9sj 0.6s ease-out;
}

.empty-state-icon[b-o9ec4ga9sj] {
    font-size: 3rem;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.empty-state p[b-o9ec4ga9sj] {
    font-size: 0.95rem;
}

/* ===== Error ===== */

.error-strip[b-o9ec4ga9sj] {
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    animation: slideUp-b-o9ec4ga9sj 0.3s ease-out both;
}

/* ===== Input Area ===== */

.chat-input-area[b-o9ec4ga9sj] {
    padding: 0.85rem 1rem;
    background: var(--neolink-bg-input-area);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(var(--neolink-fern-rgb), 0.22);
}

.chat-compose-bar[b-o9ec4ga9sj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1.5px solid rgba(var(--neolink-shamrock-rgb), 0.20);
    border-radius: 2rem;
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    box-shadow: 0 2px 20px rgba(var(--neolink-shamrock-rgb), 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-compose-bar:focus-within[b-o9ec4ga9sj] {
    border-color: rgba(var(--neolink-shamrock-rgb), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--neolink-shamrock-rgb), 0.10),
                0 4px 24px rgba(var(--neolink-shamrock-rgb), 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.chat-input[b-o9ec4ga9sj] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.45rem 0.25rem;
    font-size: 0.92rem;
    color: var(--neolink-text-heading);
    min-width: 0;
}

.chat-input:focus[b-o9ec4ga9sj] {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.chat-input[b-o9ec4ga9sj]::placeholder {
    color: rgba(var(--neolink-shamrock-rgb), 0.40);
    font-style: italic;
}

.chat-input:disabled[b-o9ec4ga9sj] {
    color: rgba(var(--neolink-shamrock-rgb), 0.35);
    cursor: not-allowed;
}

.chat-input:disabled[b-o9ec4ga9sj]::placeholder {
    color: rgba(var(--neolink-shamrock-rgb), 0.30);
}

.btn-send-icon[b-o9ec4ga9sj] {
    font-size: 1.1rem;
}

/* ===== Animations ===== */

@keyframes fadeIn-b-o9ec4ga9sj {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp-b-o9ec4ga9sj {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* /Components/Pages/Avaliador/MedicalActSearch.razor.rz.scp.css */
/* ===== Page Layout ===== */

.page-wrapper[b-manu716ds9] {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== Header ===== */

.chat-header[b-manu716ds9] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chat-header h1[b-manu716ds9] {
    font-weight: 700;
    font-size: 1.75rem;
    background: var(--neolink-gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-header p[b-manu716ds9] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== Chat Card ===== */

.chat-card[b-manu716ds9] {
    height: 68vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ===== Messages Area ===== */

.chat-messages[b-manu716ds9] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    scroll-behavior: smooth;
    background: var(--neolink-bg-chat);
}

/* Scrollbar */
.chat-messages[b-manu716ds9]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-manu716ds9]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-manu716ds9]::-webkit-scrollbar-thumb {
    background: rgba(var(--neolink-shamrock-rgb), 0.30);
    border-radius: 3px;
}

.chat-messages[b-manu716ds9]::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--neolink-shamrock-rgb), 0.50);
}

@media (max-width: 768px) {
    .page-wrapper[b-manu716ds9] {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-top: 0.2rem;
        padding-left: 0;
        padding-right: 0;
        height: calc(100svh - 5rem); /* Ensures chat fits exactly on screen */
        display: flex;
        flex-direction: column;
    }
    .chat-header[b-manu716ds9] {
        margin-bottom: 0.5rem;
        padding: 0 1rem;
        flex-shrink: 0;
    }
    .chat-header h1[b-manu716ds9] {
        font-size: 1.35rem;
    }
    .chat-header p[b-manu716ds9] {
        display: none; /* Save space on mobile */
    }
    .chat-card[b-manu716ds9] {
        height: auto;
        flex: 1 1 0;
        min-height: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .chat-messages[b-manu716ds9] {
        padding: 0.75rem 0.5rem;
    }
}

/* ===== Empty State ===== */

.empty-state[b-manu716ds9] {
    text-align: center;
    color: #adb5bd;
    margin: auto;
    animation: fadeIn-b-manu716ds9 0.6s ease-out;
}

.empty-state-icon[b-manu716ds9] {
    font-size: 3rem;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.empty-state p[b-manu716ds9] {
    font-size: 0.95rem;
}

/* ===== Error ===== */

.error-strip[b-manu716ds9] {
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    animation: slideUp-b-manu716ds9 0.3s ease-out both;
}

/* ===== Input Area ===== */

.chat-input-area[b-manu716ds9] {
    padding: 0.85rem 1rem;
    background: var(--neolink-bg-input-area);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(var(--neolink-fern-rgb), 0.22);
}

.chat-compose-bar[b-manu716ds9] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1.5px solid rgba(var(--neolink-shamrock-rgb), 0.20);
    border-radius: 2rem;
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    box-shadow: 0 2px 20px rgba(76, 175, 80, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-compose-bar:focus-within[b-manu716ds9] {
    border-color: rgba(var(--neolink-shamrock-rgb), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--neolink-shamrock-rgb), 0.10),
                0 4px 24px rgba(var(--neolink-shamrock-rgb), 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.chat-input[b-manu716ds9] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.45rem 0.25rem;
    font-size: 0.92rem;
    color: #1e1b4b;
    min-width: 0;
}

.chat-input:focus[b-manu716ds9] {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.chat-input[b-manu716ds9]::placeholder {
    color: rgba(var(--neolink-shamrock-rgb), 0.40);
    font-style: italic;
}

.chat-input:disabled[b-manu716ds9] {
    color: rgba(var(--neolink-shamrock-rgb), 0.35);
    cursor: not-allowed;
}

.chat-input:disabled[b-manu716ds9]::placeholder {
    color: rgba(var(--neolink-shamrock-rgb), 0.30);
}

.btn-send-icon[b-manu716ds9] {
    font-size: 1.1rem;
}

/* ===== Animations ===== */

@keyframes fadeIn-b-manu716ds9 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp-b-manu716ds9 {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* /Components/Pages/Avaliador/MedicalActSearchAudio.razor.rz.scp.css */
/* ===== Page Layout ===== */

.page-wrapper[b-jd9hzznmd5] {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== Header ===== */

.chat-header[b-jd9hzznmd5] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chat-header h1[b-jd9hzznmd5] {
    font-weight: 700;
    font-size: 1.75rem;
    background: var(--neolink-gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-header p[b-jd9hzznmd5] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== Chat Card ===== */

.chat-card[b-jd9hzznmd5] {
    height: 68vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ===== Messages Area ===== */

.chat-messages[b-jd9hzznmd5] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    scroll-behavior: smooth;
    background: var(--neolink-bg-chat);
}

/* Scrollbar */
.chat-messages[b-jd9hzznmd5]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-jd9hzznmd5]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-jd9hzznmd5]::-webkit-scrollbar-thumb {
    background: rgba(var(--neolink-shamrock-rgb), 0.30);
    border-radius: 3px;
}

.chat-messages[b-jd9hzznmd5]::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--neolink-shamrock-rgb), 0.50);
}

@media (max-width: 768px) {
    .page-wrapper[b-jd9hzznmd5] {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-top: 0.2rem;
        padding-left: 0;
        padding-right: 0;
        height: calc(100svh - 5rem); /* Ensures chat fits exactly on screen */
        display: flex;
        flex-direction: column;
    }
    .chat-header[b-jd9hzznmd5] {
        margin-bottom: 0.5rem;
        padding: 0 1rem;
        flex-shrink: 0;
    }
    .chat-header h1[b-jd9hzznmd5] {
        font-size: 1.35rem;
    }
    .chat-header p[b-jd9hzznmd5] {
        display: none; /* Save space on mobile */
    }
    .chat-card[b-jd9hzznmd5] {
        height: auto;
        flex: 1 1 0;
        min-height: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .chat-messages[b-jd9hzznmd5] {
        padding: 0.75rem 0.5rem;
    }
}

/* ===== Empty State ===== */

.empty-state[b-jd9hzznmd5] {
    text-align: center;
    color: #adb5bd;
    margin: auto;
    animation: fadeIn-b-jd9hzznmd5 0.6s ease-out;
}

.empty-state-icon[b-jd9hzznmd5] {
    font-size: 3rem;
    opacity: 0.5;
    display: block;
    margin-bottom: 0.5rem;
}

.empty-state p[b-jd9hzznmd5] {
    font-size: 0.95rem;
}

/* ===== Error ===== */

.error-strip[b-jd9hzznmd5] {
    border-top: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    animation: slideUp-b-jd9hzznmd5 0.3s ease-out both;
}

/* ===== Input Area ===== */

.chat-input-area[b-jd9hzznmd5] {
    padding: 0.85rem 1rem;
    background: var(--neolink-bg-input-area);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid rgba(var(--neolink-fern-rgb), 0.22);
}

.chat-compose-bar[b-jd9hzznmd5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1.5px solid rgba(var(--neolink-shamrock-rgb), 0.20);
    border-radius: 2rem;
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    box-shadow: 0 2px 20px rgba(76, 175, 80, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-compose-bar:focus-within[b-jd9hzznmd5] {
    border-color: rgba(var(--neolink-shamrock-rgb), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--neolink-shamrock-rgb), 0.10),
                0 4px 24px rgba(var(--neolink-shamrock-rgb), 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.chat-input[b-jd9hzznmd5] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.45rem 0.25rem;
    font-size: 0.92rem;
    color: #1e1b4b;
    min-width: 0;
}

.chat-input:focus[b-jd9hzznmd5] {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.chat-input[b-jd9hzznmd5]::placeholder {
    color: rgba(var(--neolink-shamrock-rgb), 0.40);
    font-style: italic;
}

.chat-input:disabled[b-jd9hzznmd5] {
    color: rgba(var(--neolink-shamrock-rgb), 0.35);
    cursor: not-allowed;
}

.chat-input:disabled[b-jd9hzznmd5]::placeholder {
    color: rgba(var(--neolink-shamrock-rgb), 0.30);
}

.btn-send-icon[b-jd9hzznmd5] {
    font-size: 1.1rem;
}

/* ===== Animations ===== */

@keyframes fadeIn-b-jd9hzznmd5 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp-b-jd9hzznmd5 {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* /Components/Pages/Avaliador/MedicalActSearchGuide.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   Medical Act Search Guide — glassmorphism info layout
   Violet/purple accent to match the Identificador de Ato page
   ═══════════════════════════════════════════════ */

.guide-wrapper[b-p9lce20r7g] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ── Hero ─────────────────────────────────────── */

.guide-hero[b-p9lce20r7g] {
    position: relative;
    text-align: center;
    padding: 3.5rem 2rem 3rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(192, 165, 252, 0.3);
    border-radius: 1.5rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 40px rgba(129, 230, 217, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
    overflow: hidden;
}

.hero-glow[b-p9lce20r7g] {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(var(--neolink-shamrock-rgb), 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge[b-p9lce20r7g] {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(var(--neolink-shamrock-rgb), 0.12), rgba(var(--neolink-fern-rgb), 0.12));
    border: 1px solid rgba(var(--neolink-shamrock-rgb), 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--neolink-shamrock-dark);
    margin-bottom: 1.25rem;
}

.hero-title[b-p9lce20r7g] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1e1b4b;
    margin-bottom: 1rem;
}

.hero-accent[b-p9lce20r7g] {
    background: var(--neolink-gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub[b-p9lce20r7g] {
    font-size: 1.05rem;
    color: #475569;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.hero-cta[b-p9lce20r7g] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    background: var(--neolink-gradient-accent);
    color: var(--neolink-text-on-accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(var(--neolink-shamrock-rgb), 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover[b-p9lce20r7g] {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--neolink-shamrock-rgb), 0.45);
    color: #ffffff;
}

.cta-arrow[b-p9lce20r7g] {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.hero-cta:hover .cta-arrow[b-p9lce20r7g] {
    transform: translateX(4px);
}

/* ── Section shell ────────────────────────────── */

.guide-section[b-p9lce20r7g] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title[b-p9lce20r7g] {
    font-size: 1.5rem;
    font-weight: 750;
    color: #1e1b4b;
    margin: 0;
}

.section-subtitle[b-p9lce20r7g] {
    font-size: 0.95rem;
    color: #64748b;
    margin: -0.75rem 0 0;
}

/* ── Steps grid ───────────────────────────────── */

.steps-grid[b-p9lce20r7g] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.step-card[b-p9lce20r7g] {
    position: relative;
    padding: 1.5rem;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(var(--neolink-shamrock-rgb), 0.20);
    border-radius: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(var(--neolink-shamrock-rgb), 0.06), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover[b-p9lce20r7g] {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(var(--neolink-shamrock-rgb), 0.12);
}

.step-number[b-p9lce20r7g] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: var(--neolink-gradient-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon[b-p9lce20r7g] {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.step-card h3[b-p9lce20r7g] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 0.5rem;
}

.step-card p[b-p9lce20r7g] {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* ── Features grid ────────────────────────────── */

.features-grid[b-p9lce20r7g] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-card[b-p9lce20r7g] {
    padding: 1.4rem 1.5rem;
    border-radius: 1.1rem;
    border: 1px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease;
}

.feature-card:hover[b-p9lce20r7g] {
    transform: translateY(-2px);
}

.feature-card h4[b-p9lce20r7g] {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0.5rem 0 0.4rem;
}

.feature-card p[b-p9lce20r7g] {
    font-size: 0.855rem;
    margin: 0;
    line-height: 1.6;
}

.feature-icon[b-p9lce20r7g] {
    font-size: 1.6rem;
    line-height: 1;
}

.feature-purple[b-p9lce20r7g] {
    background: linear-gradient(135deg, rgba(57,158,90,0.10), rgba(57,158,90,0.06));
    border-color: rgba(57,158,90,0.22);
    color: #1a4a2a;
}

.feature-blue[b-p9lce20r7g] {
    background: linear-gradient(135deg, rgba(83,122,90,0.10), rgba(83,122,90,0.07));
    border-color: rgba(83,122,90,0.22);
    color: #2c302e;
}

.feature-teal[b-p9lce20r7g] {
    background: linear-gradient(135deg, rgba(57,158,90,0.12), rgba(43,122,67,0.08));
    border-color: rgba(57,158,90,0.20);
    color: #1a4a2a;
}

.feature-indigo[b-p9lce20r7g] {
    background: linear-gradient(135deg, rgba(44,48,46,0.08), rgba(44,48,46,0.05));
    border-color: rgba(44,48,46,0.18);
    color: #2c302e;
}

.feature-rose[b-p9lce20r7g] {
    background: linear-gradient(135deg, rgba(83,122,90,0.09), rgba(57,158,90,0.05));
    border-color: rgba(83,122,90,0.15);
    color: #3d5c43;
}

.feature-amber[b-p9lce20r7g] {
    background: linear-gradient(135deg, rgba(71,74,72,0.09), rgba(71,74,72,0.05));
    border-color: rgba(71,74,72,0.16);
    color: #474a48;
}

/* ── Tips list ────────────────────────────────── */

.tips-list[b-p9lce20r7g] {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(192, 165, 252, 0.25);
    border-radius: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.tip-item[b-p9lce20r7g] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
    border-bottom: 1px solid rgba(192, 165, 252, 0.14);
    transition: background 0.15s ease;
}

.tip-item:last-child[b-p9lce20r7g] {
    border-bottom: none;
}

.tip-item:hover[b-p9lce20r7g] {
    background: rgba(129, 230, 217, 0.04);
}

.tip-dot[b-p9lce20r7g] {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neolink-shamrock), var(--neolink-shamrock-light));
    margin-top: 0.45rem;
    box-shadow: 0 0 6px rgba(var(--neolink-shamrock-rgb), 0.4);
}

/* ── Fields explainer ─────────────────────────── */

.progress-explainer[b-p9lce20r7g] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.pe-item[b-p9lce20r7g] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.1rem;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(192, 165, 252, 0.2);
    border-radius: 0.875rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pe-item p[b-p9lce20r7g] {
    font-size: 0.8rem;
    color: #475569;
    margin: 0;
    line-height: 1.55;
}

.pe-badge[b-p9lce20r7g] {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
}

.pe-act[b-p9lce20r7g] {
    background: rgba(var(--neolink-shamrock-rgb), 0.12);
    color: var(--neolink-shamrock-dark);
    border: 1px solid rgba(var(--neolink-shamrock-rgb), 0.25);
}

.pe-spec[b-p9lce20r7g] {
    background: rgba(var(--neolink-fern-rgb), 0.12);
    color: var(--neolink-fern-dark);
    border: 1px solid rgba(var(--neolink-fern-rgb), 0.25);
}

/* /Components/Pages/Avaliador/MedicalSearchGuide.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   Guide page — glassmorphism info layout
   ═══════════════════════════════════════════════ */

.guide-wrapper[b-qh0k1pkuqm] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ── Hero ─────────────────────────────────────── */

.guide-hero[b-qh0k1pkuqm] {
    position: relative;
    text-align: center;
    padding: 3.5rem 2rem 3rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(129, 230, 217, 0.3);
    border-radius: 1.5rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 40px rgba(44, 122, 123, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
    overflow: hidden;
}

.hero-glow[b-qh0k1pkuqm] {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(44, 122, 123,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge[b-qh0k1pkuqm] {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(44, 122, 123,0.12), rgba(129, 230, 217,0.12));
    border: 1px solid rgba(44, 122, 123,0.25);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #2c7a7b;
    margin-bottom: 1.25rem;
}

.hero-title[b-qh0k1pkuqm] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1e1b4b;
    margin-bottom: 1rem;
}

.hero-accent[b-qh0k1pkuqm] {
    background: linear-gradient(135deg, #2c7a7b 0%, #81e6d9 60%, #bee3f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub[b-qh0k1pkuqm] {
    font-size: 1.05rem;
    color: #475569;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.hero-cta[b-qh0k1pkuqm] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2c7a7b, #2c7a7b);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(44, 122, 123,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover[b-qh0k1pkuqm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(44, 122, 123,0.45);
    color: #ffffff;
}

.cta-arrow[b-qh0k1pkuqm] {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.hero-cta:hover .cta-arrow[b-qh0k1pkuqm] {
    transform: translateX(4px);
}

/* ── Section shell ────────────────────────────── */

.guide-section[b-qh0k1pkuqm] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title[b-qh0k1pkuqm] {
    font-size: 1.5rem;
    font-weight: 750;
    color: #1e1b4b;
    margin: 0;
}

.section-subtitle[b-qh0k1pkuqm] {
    font-size: 0.95rem;
    color: #64748b;
    margin: -0.75rem 0 0;
}

/* ── Steps grid ───────────────────────────────── */

.steps-grid[b-qh0k1pkuqm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.step-card[b-qh0k1pkuqm] {
    position: relative;
    padding: 1.5rem;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(129, 230, 217,0.25);
    border-radius: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(44, 122, 123,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover[b-qh0k1pkuqm] {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(44, 122, 123,0.12);
}

.step-number[b-qh0k1pkuqm] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c7a7b, #81e6d9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon[b-qh0k1pkuqm] {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.step-card h3[b-qh0k1pkuqm] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 0.5rem;
}

.step-card p[b-qh0k1pkuqm] {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* ── Features grid ────────────────────────────── */

.features-grid[b-qh0k1pkuqm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-card[b-qh0k1pkuqm] {
    padding: 1.4rem 1.5rem;
    border-radius: 1.1rem;
    border: 1px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease;
}

.feature-card:hover[b-qh0k1pkuqm] {
    transform: translateY(-2px);
}

.feature-card h4[b-qh0k1pkuqm] {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0.5rem 0 0.4rem;
}

.feature-card p[b-qh0k1pkuqm] {
    font-size: 0.855rem;
    margin: 0;
    line-height: 1.6;
}

.feature-icon[b-qh0k1pkuqm] {
    font-size: 1.6rem;
    line-height: 1;
}

.feature-purple[b-qh0k1pkuqm] {
    background: linear-gradient(135deg, rgba(129, 230, 217,0.1), rgba(44, 122, 123,0.08));
    border-color: rgba(129, 230, 217,0.2);
    color: #3730a3;
}

.feature-blue[b-qh0k1pkuqm] {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(44, 122, 123,0.06));
    border-color: rgba(59,130,246,0.2);
    color: #1e3a8a;
}

.feature-teal[b-qh0k1pkuqm] {
    background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(16,185,129,0.06));
    border-color: rgba(20,184,166,0.2);
    color: #134e4a;
}

.feature-indigo[b-qh0k1pkuqm] {
    background: linear-gradient(135deg, rgba(44, 122, 123,0.12), rgba(79,70,229,0.08));
    border-color: rgba(44, 122, 123,0.25);
    color: #312e81;
}

.feature-rose[b-qh0k1pkuqm] {
    background: linear-gradient(135deg, rgba(244,63,94,0.08), rgba(251,113,133,0.06));
    border-color: rgba(244,63,94,0.18);
    color: #881337;
}

.feature-amber[b-qh0k1pkuqm] {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(251,191,36,0.07));
    border-color: rgba(245,158,11,0.2);
    color: #78350f;
}

/* ── Tips list ────────────────────────────────── */

.tips-list[b-qh0k1pkuqm] {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(129, 230, 217,0.25);
    border-radius: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.tip-item[b-qh0k1pkuqm] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
    border-bottom: 1px solid rgba(129, 230, 217,0.14);
    transition: background 0.15s ease;
}

.tip-item:last-child[b-qh0k1pkuqm] {
    border-bottom: none;
}

.tip-item:hover[b-qh0k1pkuqm] {
    background: rgba(44, 122, 123,0.04);
}

.tip-dot[b-qh0k1pkuqm] {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c7a7b, #bee3f8);
    margin-top: 0.45rem;
    box-shadow: 0 0 6px rgba(44, 122, 123,0.4);
}

/* ── Progress explainer ───────────────────────── */

.progress-explainer[b-qh0k1pkuqm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 1rem;
}

.pe-item[b-qh0k1pkuqm] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.1rem;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(129, 230, 217,0.2);
    border-radius: 0.875rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pe-item p[b-qh0k1pkuqm] {
    font-size: 0.8rem;
    color: #475569;
    margin: 0;
    line-height: 1.55;
}

.pe-badge[b-qh0k1pkuqm] {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
}

.pe-act[b-qh0k1pkuqm]  { background: rgba(44, 122, 123,0.12); color: #4338ca; border: 1px solid rgba(44, 122, 123,0.25); }
.pe-ins[b-qh0k1pkuqm]  { background: rgba(20,184,166,0.12); color: #0f766e; border: 1px solid rgba(20,184,166,0.25); }
.pe-hc[b-qh0k1pkuqm]   { background: rgba(59,130,246,0.12); color: #1d4ed8; border: 1px solid rgba(59,130,246,0.25); }
.pe-dt[b-qh0k1pkuqm]   { background: rgba(245,158,11,0.12); color: #b45309; border: 1px solid rgba(245,158,11,0.25); }
.pe-pr[b-qh0k1pkuqm]   { background: rgba(129, 230, 217,0.12); color: #6d28d9; border: 1px solid rgba(129, 230, 217,0.25); }

/* ── Bottom CTA block ─────────────────────────── */

.guide-cta-block[b-qh0k1pkuqm] {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(44, 122, 123,0.1) 0%, rgba(129, 230, 217,0.08) 100%);
    border: 1px solid rgba(44, 122, 123,0.2);
    border-radius: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
}

.cta-glow[b-qh0k1pkuqm] {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 180px;
    background: radial-gradient(ellipse, rgba(129, 230, 217,0.22) 0%, transparent 70%);
    pointer-events: none;
}

.guide-cta-block h2[b-qh0k1pkuqm] {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 0.5rem;
}

.guide-cta-block p[b-qh0k1pkuqm] {
    color: #475569;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.cta-btn-large[b-qh0k1pkuqm] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2c7a7b, #2c7a7b);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(44, 122, 123,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn-large:hover[b-qh0k1pkuqm] {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(44, 122, 123,0.45);
    color: #ffffff;
}

.cta-arrow-lg[b-qh0k1pkuqm] {
    font-size: 1.2rem;
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 600px) {
    .guide-wrapper[b-qh0k1pkuqm] {
        padding: 1rem 1rem 3rem;
        gap: 2.5rem;
    }

    .hero-title[b-qh0k1pkuqm] {
        font-size: 1.6rem;
    }

    .steps-grid[b-qh0k1pkuqm],
    .features-grid[b-qh0k1pkuqm],
    .progress-explainer[b-qh0k1pkuqm] {
        grid-template-columns: 1fr;
    }
}


/* /Components/Pages/Home.razor.rz.scp.css */
/* ── Dashboard wrapper ────────────────────────── */

.dashboard-wrapper[b-qtsnvtthk6] {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Subtle tech-inspired dot grid background */
.dashboard-wrapper[b-qtsnvtthk6]::before {
    content: '';
    position: absolute;
    top: -5rem; left: -10rem; right: -10rem; bottom: -5rem;
    pointer-events: none;
    z-index: -1;
    background-image: radial-gradient(rgba(0, 154, 69, 0.12) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* ── Hero ─────────────────────────────────────── */

.dashboard-hero[b-qtsnvtthk6] {
    text-align: center;
}

.hero-gem[b-qtsnvtthk6] {
    font-size: 2.25rem;
    background: linear-gradient(135deg, #009A45, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.hero-title[b-qtsnvtthk6] {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1e1b4b;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.hero-accent[b-qtsnvtthk6] {
    background: linear-gradient(135deg, #009A45 0%, #4CAF50 60%, #bee3f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub[b-qtsnvtthk6] {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
}

/* ── Tools grid ───────────────────────────────── */

.tools-container[b-qtsnvtthk6] {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tool-category[b-qtsnvtthk6] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.category-title[b-qtsnvtthk6] {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(0, 154, 69, 0.15);
    display: inline-block;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tools-grid[b-qtsnvtthk6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

/* ── Tool card ────────────────────────────────── */

.tool-invoice[b-qtsnvtthk6] {
    --card-primary: #10b981;  /* Emerald */
    --card-rgb: 16, 185, 129;
}

.tool-avaliador[b-qtsnvtthk6] {
    --card-primary: #3b82f6;  /* Blue */
    --card-rgb: 59, 130, 246;
}

.tool-avaliador-voice[b-qtsnvtthk6] {
    --card-primary: #3b82f6;  /* Blue */
    --card-rgb: 59, 130, 246;
}

.tool-diagnose[b-qtsnvtthk6] {
    --card-primary: #ec4899;  /* Pink */
    --card-rgb: 236, 72, 153;
}

.tool-diagnose-voice[b-qtsnvtthk6] {
    --card-primary: #ec4899;  /* Pink */
    --card-rgb: 236, 72, 153;
}

a.tool-card[b-qtsnvtthk6] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(160deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(var(--card-rgb), 0.25);
    border-top: 4px solid var(--card-primary);
    border-radius: 12px; 
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

/* Soft glowing wave in background */
a.tool-card[b-qtsnvtthk6]::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at top right, rgba(var(--card-rgb), 0.1) 0%, transparent 60%);
    pointer-events: none;
}

a.tool-card:hover[b-qtsnvtthk6] {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(var(--card-rgb), 0.15);
    border-color: rgba(var(--card-rgb), 0.6);
}

/* ── Tool header row ──────────────────────────── */

.tool-header[b-qtsnvtthk6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-icon[b-qtsnvtthk6] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.35rem;
    line-height: 1;
    background: rgba(var(--card-rgb), 0.15);
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(var(--card-rgb), 0.3);
}

.tool-badge[b-qtsnvtthk6] {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(var(--card-rgb), 0.12);
    color: var(--card-primary);
    border: 1px solid rgba(var(--card-rgb), 0.25);
}

/* ── Tool name & description ──────────────────── */

.tool-name[b-qtsnvtthk6] {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.25;
}

/* ── Tool footer ──────────────────────────────── */

.tool-footer[b-qtsnvtthk6] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.action-text[b-qtsnvtthk6] {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--card-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

a.tool-card:hover .action-text[b-qtsnvtthk6] {
    filter: brightness(0.85);
}

.btn-arrow[b-qtsnvtthk6] {
    transition: transform 0.2s ease;
}

a.tool-card:hover .btn-arrow[b-qtsnvtthk6] {
    transform: translateX(4px);
}

.tool-guide-link[b-qtsnvtthk6] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #009A45;
    text-decoration: none;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(0, 154, 69, 0.3);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.tool-guide-link:hover[b-qtsnvtthk6] {
    color: #009A45;
    border-bottom-color: rgba(79, 70, 229, 0.6);
}


/* ===== Header — mirrors .chat-header from Avaliador ===== */

.chat-header[b-qtsnvtthk6] {
    text-align: center;
    margin-bottom: 0;
}

.chat-header h1[b-qtsnvtthk6] {
    font-weight: 700;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #009A45, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-header p[b-qtsnvtthk6] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== Upload Card — mirrors .chat-card from Avaliador ===== */

.upload-card[b-qtsnvtthk6] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 154, 69, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ===== Upload Zone ===== */

.upload-zone[b-qtsnvtthk6] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 2.5rem 1.25rem;
    border-radius: 0.75rem;
    border: 2px dashed rgba(0, 154, 69, 0.25);
    background: rgba(0, 154, 69, 0.03);
    cursor: pointer;
    text-align: center;
    min-height: 9rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    overflow: hidden;
}

.upload-zone:hover[b-qtsnvtthk6] {
    border-color: rgba(0, 154, 69, 0.5);
    background: rgba(0, 154, 69, 0.07);
}

.upload-zone.has-file[b-qtsnvtthk6] {
    border-style: solid;
    border-color: rgba(0, 154, 69, 0.4);
    background: rgba(0, 154, 69, 0.05);
}

/* The <InputFile> is stretched invisibly over the whole zone */
.upload-input[b-qtsnvtthk6] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-icon[b-qtsnvtthk6] {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
    pointer-events: none;
}

.upload-prompt[b-qtsnvtthk6] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4338ca;
    margin: 0;
    pointer-events: none;
}

.upload-hint[b-qtsnvtthk6] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
    pointer-events: none;
}

.upload-filename[b-qtsnvtthk6] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e1b4b;
    margin: 0;
    word-break: break-all;
    pointer-events: none;
}

.upload-meta[b-qtsnvtthk6] {
    font-size: 0.8rem;
    color: #009A45;
    margin: 0;
    pointer-events: none;
}

/* ===== Actions row ===== */

.upload-actions[b-qtsnvtthk6] {
    display: flex;
    justify-content: center;
}

/* ===== Error strip ===== */

.error-strip[b-qtsnvtthk6] {
    border-top: 1px solid rgba(220, 53, 69, 0.15);
    padding-top: 0.5rem;
    animation: slideUp-b-qtsnvtthk6 0.3s ease-out both;
}

/* ===== Results Card — mirrors .chat-card from Avaliador ===== */

.results-card[b-qtsnvtthk6] {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 154, 69, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.results-header[b-qtsnvtthk6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 154, 69, 0.1), rgba(79, 70, 229, 0.07));
    border-bottom: 1px solid rgba(0, 154, 69, 0.12);
}

.results-title[b-qtsnvtthk6] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1b4b;
}

.cost-badge[b-qtsnvtthk6] {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 154, 69, 0.1);
    color: #4338ca;
    border: 1px solid rgba(0, 154, 69, 0.2);
}

/* ===== Results Table ===== */

.results-table-wrapper[b-qtsnvtthk6] {
    overflow-x: auto;
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 154, 69, 0.3) transparent;
}

.results-table-wrapper[b-qtsnvtthk6]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.results-table-wrapper[b-qtsnvtthk6]::-webkit-scrollbar-track {
    background: transparent;
}

.results-table-wrapper[b-qtsnvtthk6]::-webkit-scrollbar-thumb {
    background: rgba(0, 154, 69, 0.3);
    border-radius: 3px;
}

.results-table[b-qtsnvtthk6] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.results-table thead th[b-qtsnvtthk6] {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #009A45;
    background: rgba(249, 250, 255, 0.97);
    border-bottom: 1px solid rgba(0, 154, 69, 0.1);
}

.results-table tbody tr[b-qtsnvtthk6] {
    border-bottom: 1px solid rgba(76, 175, 80, 0.12);
    transition: background 0.15s ease;
}

.results-table tbody tr:last-child[b-qtsnvtthk6] {
    border-bottom: none;
}

.results-table tbody tr:hover[b-qtsnvtthk6] {
    background: rgba(0, 154, 69, 0.04);
}

.results-table tbody tr.row-meta[b-qtsnvtthk6] {
    background: rgba(0, 154, 69, 0.05);
}

.field-name[b-qtsnvtthk6] {
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    width: 40%;
}

.field-value[b-qtsnvtthk6] {
    padding: 0.65rem 1.25rem;
    color: #1e293b;
    word-break: break-word;
}

.value-badge[b-qtsnvtthk6] {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    margin: 0.1rem;
    border-radius: 0.375rem;
    background: rgba(0, 154, 69, 0.1);
    color: #4338ca;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 154, 69, 0.15);
}

/* ===== Animations ===== */

@keyframes slideUp-b-qtsnvtthk6 {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}



/* /Components/Pages/InvoiceReader/InvoiceReader.razor.rz.scp.css */
/* ===== Page Layout ===== */

.page-wrapper[b-93xxp1vi12] {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== Header ===== */

.chat-header[b-93xxp1vi12] {
    text-align: center;
    margin-bottom: 0;
}

.chat-header h1[b-93xxp1vi12] {
    font-weight: 700;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #009A45, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chat-header p[b-93xxp1vi12] {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===== Upload Card ===== */

.upload-card[b-93xxp1vi12] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 154, 69, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ===== Upload Zone ===== */

.upload-zone[b-93xxp1vi12] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 2.5rem 1.25rem;
    border-radius: 0.75rem;
    border: 2px dashed rgba(0, 154, 69, 0.25);
    background: rgba(0, 154, 69, 0.03);
    cursor: pointer;
    text-align: center;
    min-height: 9rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    overflow: hidden;
}

.upload-zone:hover[b-93xxp1vi12] {
    border-color: rgba(0, 154, 69, 0.5);
    background: rgba(0, 154, 69, 0.07);
}

.upload-zone.has-file[b-93xxp1vi12] {
    border-style: solid;
    border-color: rgba(0, 154, 69, 0.4);
    background: rgba(0, 154, 69, 0.05);
}

.upload-input[b-93xxp1vi12] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-icon[b-93xxp1vi12] {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
    pointer-events: none;
}

.upload-prompt[b-93xxp1vi12] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4338ca;
    margin: 0;
    pointer-events: none;
}

.upload-hint[b-93xxp1vi12] {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
    pointer-events: none;
}

.upload-filename[b-93xxp1vi12] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e1b4b;
    margin: 0;
    word-break: break-all;
    pointer-events: none;
}

.upload-meta[b-93xxp1vi12] {
    font-size: 0.8rem;
    color: #009A45;
    margin: 0;
    pointer-events: none;
}

/* ===== Actions row ===== */

.upload-actions[b-93xxp1vi12] {
    display: flex;
    justify-content: center;
}

/* ===== Error strip ===== */

.error-strip[b-93xxp1vi12] {
    border-top: 1px solid rgba(220, 53, 69, 0.15);
    padding-top: 0.5rem;
    animation: slideUp-b-93xxp1vi12 0.3s ease-out both;
}

/* ===== Results Card ===== */

.results-card[b-93xxp1vi12] {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 154, 69, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.results-header[b-93xxp1vi12] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 154, 69, 0.1), rgba(79, 70, 229, 0.07));
    border-bottom: 1px solid rgba(0, 154, 69, 0.12);
}

.results-title[b-93xxp1vi12] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1b4b;
}

.cost-badge[b-93xxp1vi12] {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(0, 154, 69, 0.1);
    color: #4338ca;
    border: 1px solid rgba(0, 154, 69, 0.2);
}

/* ===== Results Table ===== */

.results-table-wrapper[b-93xxp1vi12] {
    overflow-x: auto;
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 154, 69, 0.3) transparent;
}

.results-table-wrapper[b-93xxp1vi12]::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.results-table-wrapper[b-93xxp1vi12]::-webkit-scrollbar-track {
    background: transparent;
}

.results-table-wrapper[b-93xxp1vi12]::-webkit-scrollbar-thumb {
    background: rgba(0, 154, 69, 0.3);
    border-radius: 3px;
}

.results-table[b-93xxp1vi12] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.results-table thead th[b-93xxp1vi12] {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #009A45;
    background: rgba(249, 250, 255, 0.97);
    border-bottom: 1px solid rgba(0, 154, 69, 0.1);
}

.results-table tbody tr[b-93xxp1vi12] {
    border-bottom: 1px solid rgba(76, 175, 80, 0.12);
    transition: background 0.15s ease;
}

.results-table tbody tr:last-child[b-93xxp1vi12] {
    border-bottom: none;
}

.results-table tbody tr:hover[b-93xxp1vi12] {
    background: rgba(0, 154, 69, 0.04);
}

.results-table tbody tr.row-meta[b-93xxp1vi12] {
    background: rgba(0, 154, 69, 0.05);
}

.field-name[b-93xxp1vi12] {
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    width: 40%;
}

.field-value[b-93xxp1vi12] {
    padding: 0.65rem 1.25rem;
    color: #1e293b;
    word-break: break-word;
}

.value-badge[b-93xxp1vi12] {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    margin: 0.1rem;
    border-radius: 0.375rem;
    background: rgba(0, 154, 69, 0.1);
    color: #4338ca;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 154, 69, 0.15);
}

/* ===== Animations ===== */

@keyframes slideUp-b-93xxp1vi12 {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}



/* /Components/Pages/InvoiceReader/InvoiceReaderGuide.razor.rz.scp.css */
/* ═══════════════════════════════════════════════
   Invoice Reader Guide page — glassmorphism info layout
   ═══════════════════════════════════════════════ */

.guide-wrapper[b-69cudrzs2t] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ── Section shell ────────────────────────────── */

.guide-section[b-69cudrzs2t] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title[b-69cudrzs2t] {
    font-size: 1.5rem;
    font-weight: 750;
    color: #1e1b4b;
    margin: 0;
}

.section-subtitle[b-69cudrzs2t] {
    font-size: 0.95rem;
    color: #64748b;
    margin: -0.75rem 0 0;
}

/* ── Steps grid ───────────────────────────────── */

.steps-grid[b-69cudrzs2t] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.step-card[b-69cudrzs2t] {
    position: relative;
    padding: 1.5rem;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(129, 230, 217,0.25);
    border-radius: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(44, 122, 123,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover[b-69cudrzs2t] {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(44, 122, 123,0.12);
}

.step-number[b-69cudrzs2t] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c7a7b, #81e6d9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon[b-69cudrzs2t] {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.step-card h3[b-69cudrzs2t] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 0.5rem;
}

.step-card p[b-69cudrzs2t] {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* ── Features grid ────────────────────────────── */

.features-grid[b-69cudrzs2t] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-card[b-69cudrzs2t] {
    padding: 1.4rem 1.5rem;
    border-radius: 1.1rem;
    border: 1px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease;
}

.feature-card:hover[b-69cudrzs2t] {
    transform: translateY(-2px);
}

.feature-card h4[b-69cudrzs2t] {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0.5rem 0 0.4rem;
}

.feature-card p[b-69cudrzs2t] {
    font-size: 0.855rem;
    margin: 0;
    line-height: 1.6;
}

.feature-icon[b-69cudrzs2t] {
    font-size: 1.6rem;
    line-height: 1;
}

.feature-purple[b-69cudrzs2t] {
    background: linear-gradient(135deg, rgba(129, 230, 217,0.1), rgba(44, 122, 123,0.08));
    border-color: rgba(129, 230, 217,0.2);
    color: #3730a3;
}

.feature-blue[b-69cudrzs2t] {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(44, 122, 123,0.06));
    border-color: rgba(59,130,246,0.2);
    color: #1e3a8a;
}

.feature-teal[b-69cudrzs2t] {
    background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(16,185,129,0.06));
    border-color: rgba(20,184,166,0.2);
    color: #134e4a;
}

.feature-indigo[b-69cudrzs2t] {
    background: linear-gradient(135deg, rgba(44, 122, 123,0.12), rgba(79,70,229,0.08));
    border-color: rgba(44, 122, 123,0.25);
    color: #312e81;
}

.feature-rose[b-69cudrzs2t] {
    background: linear-gradient(135deg, rgba(244,63,94,0.08), rgba(251,113,133,0.06));
    border-color: rgba(244,63,94,0.18);
    color: #881337;
}

.feature-amber[b-69cudrzs2t] {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(251,191,36,0.07));
    border-color: rgba(245,158,11,0.2);
    color: #78350f;
}

/* ── Tips list ────────────────────────────────── */

.tips-list[b-69cudrzs2t] {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(129, 230, 217,0.25);
    border-radius: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.tip-item[b-69cudrzs2t] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
    border-bottom: 1px solid rgba(129, 230, 217,0.14);
    transition: background 0.15s ease;
}

.tip-item:last-child[b-69cudrzs2t] {
    border-bottom: none;
}

.tip-item:hover[b-69cudrzs2t] {
    background: rgba(44, 122, 123,0.04);
}

.tip-dot[b-69cudrzs2t] {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c7a7b, #bee3f8);
    margin-top: 0.45rem;
    box-shadow: 0 0 6px rgba(44, 122, 123,0.4);
}

/* ── Fields explainer ─────────────────────────── */

.progress-explainer[b-69cudrzs2t] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 1rem;
}

.pe-item[b-69cudrzs2t] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.1rem;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(129, 230, 217,0.2);
    border-radius: 0.875rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pe-item p[b-69cudrzs2t] {
    font-size: 0.8rem;
    color: #475569;
    margin: 0;
    line-height: 1.55;
}

.pe-badge[b-69cudrzs2t] {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    width: fit-content;
}

.pe-act[b-69cudrzs2t]  { background: rgba(44, 122, 123,0.12); color: #4338ca; border: 1px solid rgba(44, 122, 123,0.25); }
.pe-ins[b-69cudrzs2t]  { background: rgba(20,184,166,0.12); color: #0f766e; border: 1px solid rgba(20,184,166,0.25); }
.pe-hc[b-69cudrzs2t]   { background: rgba(59,130,246,0.12); color: #1d4ed8; border: 1px solid rgba(59,130,246,0.25); }
.pe-dt[b-69cudrzs2t]   { background: rgba(245,158,11,0.12); color: #b45309; border: 1px solid rgba(245,158,11,0.25); }
.pe-pr[b-69cudrzs2t]   { background: rgba(129, 230, 217,0.12); color: #6d28d9; border: 1px solid rgba(129, 230, 217,0.25); }


/* /Components/UI/AppButton.razor.rz.scp.css */
/* ===== Base ===== */

.app-btn[b-yi6vrytl9u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease,
                background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.app-btn:disabled[b-yi6vrytl9u],
.app-btn--loading[b-yi6vrytl9u] {
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== Sizes ===== */

.app-btn--sm[b-yi6vrytl9u] {
    font-size: 0.82rem;
    padding: 0.3rem 0.85rem;
}

.app-btn--md[b-yi6vrytl9u] {
    font-size: 0.9rem;
    padding: 0.45rem 1.1rem;
}

.app-btn--lg[b-yi6vrytl9u] {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
}

/* ===== Shapes ===== */

.app-btn--default[b-yi6vrytl9u] {
    border-radius: 0.625rem;
}

.app-btn--pill[b-yi6vrytl9u] {
    border-radius: 2rem;
}

.app-btn--circle[b-yi6vrytl9u] {
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    flex-shrink: 0;
}

/* ===== Variant: primary (indigo gradient) ===== */

.app-btn--primary[b-yi6vrytl9u] {
    background: linear-gradient(135deg, #2c7a7b, #2c7a7b);
    color: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(44, 122, 123, 0.35);
}

.app-btn--primary:hover:not(:disabled)[b-yi6vrytl9u] {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(44, 122, 123, 0.5);
}

.app-btn--primary:active:not(:disabled)[b-yi6vrytl9u] {
    transform: scale(0.97);
}

.app-btn--primary:disabled[b-yi6vrytl9u] {
    background: #adb5bd;
    box-shadow: none;
    opacity: 0.5;
}

/* ===== Variant: success (emerald gradient) ===== */

.app-btn--success[b-yi6vrytl9u] {
    background: linear-gradient(135deg, #2c7a7b, #81e6d9);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.app-btn--success:hover:not(:disabled)[b-yi6vrytl9u] {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
    color: #fff;
}

.app-btn--success:active:not(:disabled)[b-yi6vrytl9u] {
    transform: scale(0.97);
}

.app-btn--success:disabled[b-yi6vrytl9u] {
    opacity: 0.65;
}

/* ===== Variant: ghost (glass secondary) ===== */

.app-btn--ghost[b-yi6vrytl9u] {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(180, 175, 170, 0.5);
    color: #6c757d;
}

.app-btn--ghost:hover:not(:disabled)[b-yi6vrytl9u] {
    background: rgba(233, 229, 225, 0.75);
    border-color: rgba(120, 113, 108, 0.4);
}

/* ===== Variant: outline-primary (indigo glass) ===== */

.app-btn--outline-primary[b-yi6vrytl9u] {
    background: rgba(44, 122, 123, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(44, 122, 123, 0.4);
    color: #2c7a7b;
    font-weight: 600;
}

.app-btn--outline-primary:hover:not(:disabled)[b-yi6vrytl9u] {
    background: rgba(44, 122, 123, 0.18);
    border-color: #2c7a7b;
    color: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 122, 123, 0.3);
}

.app-btn--outline-primary:disabled[b-yi6vrytl9u] {
    opacity: 0.35;
}

/* ===== Variant: outline-success (emerald glass) ===== */

.app-btn--outline-success[b-yi6vrytl9u] {
    background: rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #2c7a7b;
    font-weight: 600;
}

.app-btn--outline-success:hover:not(:disabled)[b-yi6vrytl9u] {
    background: rgba(16, 185, 129, 0.2);
    border-color: #81e6d9;
    color: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* ===== Variant: toggle (provider selector) ===== */

.app-btn--toggle[b-yi6vrytl9u] {
    background: transparent;
    border: none;
    color: rgba(79, 70, 229, 0.55);
}

.app-btn--toggle.app-btn--sm[b-yi6vrytl9u] {
    padding: 0.3rem 1.1rem;
}

.app-btn--toggle:hover:not(.app-btn--active):not(:disabled)[b-yi6vrytl9u] {
    color: #2c7a7b;
    background: rgba(44, 122, 123, 0.07);
}

.app-btn--toggle.app-btn--active[b-yi6vrytl9u] {
    background: linear-gradient(135deg, #2c7a7b, #2c7a7b);
    color: #fff;
    box-shadow: 0 2px 8px rgba(44, 122, 123, 0.35);
}

/* ===== Loading spinner ===== */

.btn-spinner[b-yi6vrytl9u] {
    width: 0.85em;
    height: 0.85em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin-b-yi6vrytl9u 0.6s linear infinite;
    flex-shrink: 0;
}

.app-btn--ghost .btn-spinner[b-yi6vrytl9u],
.app-btn--outline-primary .btn-spinner[b-yi6vrytl9u],
.app-btn--outline-success .btn-spinner[b-yi6vrytl9u],
.app-btn--toggle .btn-spinner[b-yi6vrytl9u] {
    border-color: rgba(0, 0, 0, 0.12);
    border-top-color: currentColor;
}

@keyframes btnSpin-b-yi6vrytl9u {
    to {
        transform: rotate(360deg);
    }
}



