/* /Components/Layout/BannersComponent.razor.rz.scp.css */
/* Banner styles - updated for full width and proper alignment */
.banners-container[b-x4z1wvq638] {
    width: 100%; /* Use 100% instead of 100vw */
    display: flex;
    flex-direction: column;
    z-index: 1000;
    /* position: fixed; has been removed */
}

.banner[b-x4z1wvq638] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
}

    /* Add display:none to dismissed banners */
    .banner.dismissed[b-x4z1wvq638] {
        display: none;
    }

.banner-content[b-x4z1wvq638] {
    flex: 1;
    text-align: center; /* Center the text */
    margin: 0 auto; /* Center the content */
    max-width: 1024px; /* Match your main container width */
    padding: 0 40px; /* Space for the dismiss button */
}

.banner-dismiss[b-x4z1wvq638] {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    position: absolute; /* Position the button */
    right: 20px; /* Align to the right side */
}

    .banner-dismiss:hover[b-x4z1wvq638] {
        opacity: 1;
    }

/* Banner type styles */
.banner-info[b-x4z1wvq638] {
    background-color: #EBF5FF;
    color: #2B6CB0;
    border-bottom: 1px solid rgba(43, 108, 176, 0.2);
}

.banner-warning[b-x4z1wvq638] {
    background-color: #FFFBEB;
    color: #92400E;
    border-bottom: 1px solid rgba(146, 64, 14, 0.2);
}

.banner-success[b-x4z1wvq638] {
    background-color: #F0FFF4;
    color: #276749;
    border-bottom: 1px solid rgba(39, 103, 73, 0.2);
}

.banner-error[b-x4z1wvq638] {
    background-color: #FFF5F5;
    color: #C53030;
    border-bottom: 1px solid rgba(197, 48, 48, 0.2);
}

.banner-maintenance[b-x4z1wvq638] {
    background-color: #FAF5FF;
    color: #6B46C1;
    border-bottom: 1px solid rgba(107, 70, 193, 0.2);
}

.banner-feature[b-x4z1wvq638] {
    background-color: #E6FFFA;
    color: #2C7A7B;
    border-bottom: 1px solid rgba(44, 122, 123, 0.2);
}

.banner-survey[b-x4z1wvq638] {
    background-color: #FFFAF0;
    color: #C05621;
    border-bottom: 1px solid rgba(192, 86, 33, 0.2);
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.footer[b-daqr6husv7] {
    background-color: #f8f9fa;
    border-top: 1px solid #e7e7e7;
    font-size: 0.9rem;
    color: #6c757d;
    padding: 0.5rem 0; /* Add explicit vertical padding */
}

.footer a[b-daqr6husv7] {
    color: #0d6efd;
    text-decoration: none;
}

.footer a:hover[b-daqr6husv7] {
    text-decoration: underline;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-saz3j9gysy] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-saz3j9gysy] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

article[b-saz3j9gysy] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar[b-saz3j9gysy] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-saz3j9gysy] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-saz3j9gysy]  a, .top-row[b-saz3j9gysy]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-saz3j9gysy]  a:hover, .top-row[b-saz3j9gysy]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-saz3j9gysy]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-saz3j9gysy] {
        justify-content: space-between;
    }

    .top-row[b-saz3j9gysy]  a, .top-row[b-saz3j9gysy]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .sidebar[b-saz3j9gysy] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-saz3j9gysy] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-saz3j9gysy]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-saz3j9gysy], article[b-saz3j9gysy] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-saz3j9gysy] {
    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-saz3j9gysy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Login/LoginHero.razor.rz.scp.css */
.hero-image-container[b-9qhdgvrnij] {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image[b-9qhdgvrnij] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-image-container[b-9qhdgvrnij] {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image-container[b-9qhdgvrnij] {
        height: 150px;
    }
}
/* /Components/Login/OtpVerificationForm.razor.rz.scp.css */
.otp-form[b-d9urggr4jp] {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.otp-header[b-d9urggr4jp] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.otp-icon[b-d9urggr4jp] {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4e8c 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.25);
}

.otp-icon i[b-d9urggr4jp] {
    font-size: 24px;
    color: white;
}

.otp-title[b-d9urggr4jp] {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2b3a;
    margin: 0 0 0.4rem 0;
}

.otp-subtitle[b-d9urggr4jp] {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.otp-subtitle strong[b-d9urggr4jp] {
    color: #2b6cb0;
    font-weight: 600;
}

.otp-boxes-container[b-d9urggr4jp] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.otp-group[b-d9urggr4jp] {
    display: flex;
    gap: 6px;
}

.otp-separator[b-d9urggr4jp] {
    font-size: 1.5rem;
    font-weight: 300;
    color: #94a3b8;
    padding: 0 6px;
    user-select: none;
}

.otp-box[b-d9urggr4jp] {
    width: 40px;
    height: 48px;
    padding: 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f8fafc;
    color: #1f2b3a;
    transition: all 0.2s ease;
    text-transform: uppercase;
    box-sizing: border-box;
}

.otp-box:focus[b-d9urggr4jp] {
    border-color: #2b6cb0;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15);
    outline: none;
}

.otp-box.filled[b-d9urggr4jp] {
    border-color: #2b6cb0;
    background-color: #fff;
}

.otp-box:disabled[b-d9urggr4jp],
.otp-box.disabled[b-d9urggr4jp] {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.error-message[b-d9urggr4jp] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.otp-verify-button[b-d9urggr4jp] {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4e8c 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.25);
}

.otp-verify-button:hover:not([disabled])[b-d9urggr4jp] {
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.35);
}

.otp-verify-button[disabled][b-d9urggr4jp] {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
}

.otp-verify-button i[b-d9urggr4jp] {
    font-size: 0.85rem;
}

.spinner[b-d9urggr4jp] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-d9urggr4jp 0.8s linear infinite;
}

@keyframes spin-b-d9urggr4jp {
    to { transform: rotate(360deg); }
}
/* /Components/Pages/AcceptTerms.razor.rz.scp.css */
.home-page-container[b-u3oecieqx0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a4a7a, #0f3057);
    color: #fff;
    padding: 2.5rem 1.5rem;
}

.auth-container[b-u3oecieqx0] {
    width: min(520px, 100%);
    background: #fff;
    color: #1f2b3a;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.auth-title[b-u3oecieqx0] {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: #0f3057;
}

.auth-subtitle[b-u3oecieqx0] {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.terms-links[b-u3oecieqx0] {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-links li[b-u3oecieqx0] {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.terms-links li:last-child[b-u3oecieqx0] {
    border-bottom: none;
}

.terms-links a[b-u3oecieqx0] {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.terms-links a:hover[b-u3oecieqx0] {
    text-decoration: underline;
}

.checkbox-label[b-u3oecieqx0] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"][b-u3oecieqx0] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}
/* /Components/Pages/Chat.razor.rz.scp.css */
    /* prevent the Blazor reconnect message from showing */
    #components-reconnect-modal[b-fq7l87qhwn] {
        display: none !important;
    }

    .page[b-fq7l87qhwn] {
        padding-top: var(--banner-padding, 0px);
        transition: padding-top 0.3s ease;
    }



    /* Ensure the chat container has the correct initial height */
    .chat-container[b-fq7l87qhwn] {
        display: flex;
        flex-direction: column;
        flex: 1;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        height: 100%;
        position: relative; /* For absolute positioning of the menu */
    }

    .chat-layout[b-fq7l87qhwn] {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
        height: calc(100vh - 120px);
    }

    @media (max-width: 768px) {
        .chat-layout[b-fq7l87qhwn] {
            grid-template-columns: 1fr;
        }

        .chat-threads[b-fq7l87qhwn] {
            max-height: 200px;
        }
    }

    .chat-threads[b-fq7l87qhwn] {
        border-right: 1px solid #e0e0e0;
        padding-right: 8px;
        overflow-y: auto;
    }

    .threads-header[b-fq7l87qhwn] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .thread-item[b-fq7l87qhwn] {
        cursor: pointer;
    }

    .thread-item:hover[b-fq7l87qhwn] {
        background-color: #f8f9fa;
    }

    .thread-id[b-fq7l87qhwn] {
        font-weight: 600;
        font-size: 0.9rem;
        word-break: break-all;
    }

    .thread-preview[b-fq7l87qhwn] {
        font-size: 0.85rem;
        color: #555;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .chat-main[b-fq7l87qhwn] {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* Ensure chat messages area doesn't push input off-screen */
    .chat-messages[b-fq7l87qhwn] {
        flex: 1;
        overflow-y: auto;
        padding: 5px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        -ms-overflow-style: none;
    }

        .chat-messages[b-fq7l87qhwn]::-webkit-scrollbar {
            /* display: none; */
        }

    /* Message bubble styles */
    .message[b-fq7l87qhwn] {
        width: 100%;
        padding: 5px 12px;
        border-radius: 18px;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .user-message[b-fq7l87qhwn] {
        color: black;
        border-bottom-right-radius: 4px;
    }

    .ai-message[b-fq7l87qhwn] {
        width: 100%;
        align-self: flex-start;
        color: #2b6cb0;
        border-bottom-left-radius: 4px;
    }

    .loading-message[b-fq7l87qhwn] {
        padding: 15px 20px;
    }

    /* Topic pills styling */
    .related-topics[b-fq7l87qhwn] {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
        justify-content: flex-start;
        max-width: 100%;
        overflow-x: hidden;
    }

    .topic-pill[b-fq7l87qhwn] {
        background-color: rgba(43, 108, 176, 0.15);
        color: #2b6cb0;
        border: 1px solid #2b6cb0;
        border-radius: 16px;
        padding: 3px 10px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
        max-width: calc(50% - 8px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .topic-pill:hover:not([disabled])[b-fq7l87qhwn] {
            background-color: rgba(43, 108, 176, 0.25);
        }

        .topic-pill[disabled][b-fq7l87qhwn] {
            opacity: 0.5;
            cursor: not-allowed;
        }




    .chat-header-container[b-fq7l87qhwn] {
        position: sticky;
        top: 0;
        background-color: #fff;
        padding: 10px 50px 10px 20px; /* Add padding on the right for the menu */
        z-index: 1; /* Lower z-index than menu */
        border-bottom: 1px solid #e2e8f0;
    }

    /* Fix chat input positioning */
    .chat-input-container[b-fq7l87qhwn] {
        display: flex;
        align-items: flex-end;
        padding: 8px 10px; /* Match chat-container padding */
        background-color: #f1f5f9;
        border-radius: 10px;
        margin: 8px 0 20px 0; /* Adjusted for alignment and increased bottom space */
        z-index: 10;
        width: 100%;
        box-sizing: border-box;
    }

    .textarea-wrapper[b-fq7l87qhwn] {
        position: relative;
        flex: 1;
        min-height: 80px;
    }

    .chat-input[b-fq7l87qhwn] {
        width: 100%;
        border: none;
        background: transparent;
        padding: 8px 0;
        resize: none;
        min-height: 44px;
        max-height: 200px;
        outline: none;
        font-family: inherit;
        font-size: 15px;
        padding-right: 45px;
        box-sizing: border-box;
        line-height: 1.4;
    }

        .chat-input:disabled[b-fq7l87qhwn] {
            opacity: 0.7;
            cursor: not-allowed;
        }

    .character-counter[b-fq7l87qhwn] {
        position: absolute;
        bottom: 8px;
        right: 8px;
        font-size: 11px;
        color: #718096;
        transition: color 0.2s;
    }

    .limit-reached[b-fq7l87qhwn] {
        color: #e53e3e;
        font-weight: bold;
    }

    /* Send button styling */
    .send-button[b-fq7l87qhwn] {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #2b6cb0;
        color: white;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        min-width: 36px;
        flex-shrink: 0;
        cursor: pointer;
        transition: background-color 0.2s;
        margin-left: 8px;
        position: relative;
        right: 0;
    }

        .send-button:hover:not([disabled])[b-fq7l87qhwn] {
            background-color: #1e4e8c;
        }

        .send-button[disabled][b-fq7l87qhwn] {
            background-color: #90b0d0;
            cursor: not-allowed;
        }

    /* Typing indicator animation */
    .typing-indicator[b-fq7l87qhwn] {
        display: flex;
        align-items: center;
    }

        .typing-indicator span[b-fq7l87qhwn] {
            height: 8px;
            width: 8px;
            background-color: #93a2b5;
            border-radius: 50%;
            display: block;
            margin: 0 2px;
            opacity: 0.7;
            animation: typing-b-fq7l87qhwn 1s infinite !important;
        }

            .typing-indicator span:nth-child(1)[b-fq7l87qhwn] {
                animation-delay: 0s;
            }

            .typing-indicator span:nth-child(2)[b-fq7l87qhwn] {
                animation-delay: 0.2s;
            }

            .typing-indicator span:nth-child(3)[b-fq7l87qhwn] {
                animation-delay: 0.4s;
            }

    /* Spinner for the send button */
    .spinner[b-fq7l87qhwn] {
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin-b-fq7l87qhwn 0.8s linear infinite !important;
    }

    /* Responsive adjustments for different screen sizes */
    @media (min-width: 1200px) {
        .chat-container[b-fq7l87qhwn] {
            max-width: 1100px;
            margin: 20px auto;
            border-radius: 12px;
            height: calc(100vh - 40px);
            min-height: calc(100vh - 40px);
        }
    }

    @media (max-width: 768px) {
        .chat-container[b-fq7l87qhwn] {
            padding: 5px;
            height: 100vh;
            max-height: 100vh;
        }

        .chat-messages[b-fq7l87qhwn] {
            max-height: calc(100vh - 140px); /* Smaller input area on mobile */
        }
    }







    @media (max-width: 360px) {
        .welcome-container[b-fq7l87qhwn] {
            padding: 12px 8px;
        }

        .welcome-title[b-fq7l87qhwn] {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .welcome-subtitle[b-fq7l87qhwn] {
            font-size: 13px;
        }

        .related-topics[b-fq7l87qhwn] {
            gap: 4px;
        }

        .topic-pill[b-fq7l87qhwn] {
            padding: 2px 6px;
            font-size: 10px;
            max-width: calc(100% - 4px);
        }

        .chat-input-container[b-fq7l87qhwn] {
            padding: 5px 6px;
            margin-right: 6px;
        }

        .send-button[b-fq7l87qhwn] {
            width: 32px;
            height: 32px;
            min-width: 32px;
            margin-left: 6px;
        }

        .chat-input[b-fq7l87qhwn] {
            padding-right: 36px;
        }
    }

    @keyframes typing-b-fq7l87qhwn {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-5px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    @keyframes spin-b-fq7l87qhwn {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

/* Chat Menu Styles */
.chat-menu-container[b-fq7l87qhwn] {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20; /* Higher z-index than header */
}

.chat-menu-button[b-fq7l87qhwn] {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .chat-menu-button:hover[b-fq7l87qhwn] {
        background-color: #f1f5f9;
    }

    .chat-menu-button svg[b-fq7l87qhwn] {
        color: #4a5568;
    }

.chat-menu-dropdown[b-fq7l87qhwn] {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 20;
    width: 220px; /* Increased width to accommodate longer text */
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

.chat-menu-item[b-fq7l87qhwn] {
    background: none;
    border: none;
    text-align: left;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    color: #2d3748;
}

    .chat-menu-item:hover[b-fq7l87qhwn] {
        background-color: #f7fafc;
    }

    .chat-menu-item:disabled[b-fq7l87qhwn] {
        opacity: 0.5;
        cursor: not-allowed;
    }

        .chat-menu-item:disabled:hover[b-fq7l87qhwn] {
            background-color: transparent; /* Prevent hover effect on disabled items */
        }

    .menu-separator[b-fq7l87qhwn] {
        height: 1px;
        background-color: #e2e8f0;
        margin: 8px 0;
        width: 100%;
    }
/* /Components/Pages/Error.razor.rz.scp.css */
.error-content[b-i7kgy47cjk] {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f1f5f9;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.error-header[b-i7kgy47cjk] {
    margin-bottom: 20px;
}

.error-title[b-i7kgy47cjk] {
    font-size: 28px;
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 10px;
}

.error-subtitle[b-i7kgy47cjk] {
    font-size: 16px;
    color: #4a5568;
}

.error-details[b-i7kgy47cjk] {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.error-actions[b-i7kgy47cjk] {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.return-button[b-i7kgy47cjk], .retry-button[b-i7kgy47cjk] {
    padding: 10px 20px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.return-button[b-i7kgy47cjk] {
    background-color: #2b6cb0;
    color: white;
    border: none;
    text-decoration: none;
}

    .return-button:hover[b-i7kgy47cjk] {
        background-color: #1e4e8c;
    }

.retry-button[b-i7kgy47cjk] {
    background-color: white;
    color: #2b6cb0;
    border: 1px solid #2b6cb0;
}

    .retry-button:hover[b-i7kgy47cjk] {
        background-color: rgba(43, 108, 176, 0.1);
    }

.dev-notice[b-i7kgy47cjk] {
    margin-top: 30px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    text-align: left;
}

    .dev-notice h3[b-i7kgy47cjk] {
        color: #2b6cb0;
        margin-bottom: 10px;
    }
/* /Components/Pages/Future/PricingTiers.razor.rz.scp.css */
.card[b-51mjrn22rp] {
    border: none;
    border-radius: 1rem;
    transition: all 0.2s;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.card:hover[b-51mjrn22rp] {
    transform: scale(1.03);
    box-shadow: 0 1rem 3rem 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.card.popular[b-51mjrn22rp] {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
    z-index: 1;
}

.card-title[b-51mjrn22rp] {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    letter-spacing: .1rem;
    font-weight: bold;
}

.card-price[b-51mjrn22rp] {
    font-size: 3rem;
    margin: 0;
}

.card-price .period[b-51mjrn22rp] {
    font-size: 0.8rem;
    color: #adb5bd;
}

.card ul li[b-51mjrn22rp] {
    margin-bottom: 1rem;
}

.fa-ul[b-51mjrn22rp] {
    padding-left: 2em; /* Adjust based on icon size */
}

.fa-li[b-51mjrn22rp] {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
}

.btn[b-51mjrn22rp] {
    font-size: 80%;
    border-radius: 5rem;
    letter-spacing: .1rem;
    font-weight: bold;
    padding: 1rem;
    transition: all 0.2s;
}
/* /Components/Pages/Login.razor.rz.scp.css */
.home-page-container[b-0xbimw5r78] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background: linear-gradient(135deg, #0a4a7a, #0f3057);
    color: #fff;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
}

.hero-wrapper[b-0xbimw5r78] {
    width: min(1100px, 100%);
}

.auth-container[b-0xbimw5r78] {
    width: min(480px, 100%);
    background: #fff;
    color: #1f2b3a;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.auth-title[b-0xbimw5r78] {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: #0f3057;
    text-align: center;
}

.auth-subtitle[b-0xbimw5r78] {
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-form[b-0xbimw5r78], .otp-form[b-0xbimw5r78] {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.form-group[b-0xbimw5r78] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-0xbimw5r78] {
        display: block;
        margin-bottom: 0.5rem;
        color: #4b5563;
        font-weight: 500;
    }

.input-group[b-0xbimw5r78] {
    position: relative;
}

.form-control[b-0xbimw5r78] {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.2s;
    box-sizing: border-box;
}

    .form-control:focus[b-0xbimw5r78] {
        border-color: #2b6cb0;
        outline: none;
    }

.error-message[b-0xbimw5r78] {
    color: #b91c1c;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.attempts-remaining[b-0xbimw5r78] {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}

.auth-button[b-0xbimw5r78] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #2b6cb0;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    min-width: 100px;
}

    .auth-button:hover:not([disabled])[b-0xbimw5r78] {
        background-color: #1e4e8c;
    }

    .auth-button[disabled][b-0xbimw5r78] {
        background-color: #90b0d0;
        cursor: not-allowed;
    }

    .auth-button.secondary[b-0xbimw5r78] {
        background-color: #e2e8f0;
        color: #4a5568;
    }

        .auth-button.secondary:hover:not([disabled])[b-0xbimw5r78] {
            background-color: #cbd5e0;
        }

.auth-buttons[b-0xbimw5r78] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.spinner[b-0xbimw5r78] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin-b-0xbimw5r78 0.8s linear infinite;
}

/* Modern OTP Verification Styling */
.otp-form[b-0xbimw5r78] {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.otp-header[b-0xbimw5r78] {
    text-align: center;
    margin-bottom: 2rem;
}

.otp-icon[b-0xbimw5r78] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4e8c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(43, 108, 176, 0.25);
}

.otp-icon i[b-0xbimw5r78] {
    font-size: 28px;
    color: white;
}

.otp-title[b-0xbimw5r78] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2b3a;
    margin: 0 0 0.5rem 0;
}

.otp-subtitle[b-0xbimw5r78] {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.otp-subtitle strong[b-0xbimw5r78] {
    color: #2b6cb0;
    font-weight: 600;
}

/* OTP Input Boxes */
.otp-boxes-container[b-0xbimw5r78] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.otp-group[b-0xbimw5r78] {
    display: flex;
    gap: 8px;
}

.otp-separator[b-0xbimw5r78] {
    font-size: 1.5rem;
    font-weight: 300;
    color: #cbd5e1;
    padding: 0 4px;
    user-select: none;
}

.otp-box[b-0xbimw5r78] {
    width: 40px;
    height: 48px;
    padding: 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background-color: #f8fafc;
    color: #1f2b3a;
    transition: all 0.2s ease;
    text-transform: uppercase;
    box-sizing: border-box;
}

.otp-box:focus[b-0xbimw5r78] {
    border-color: #2b6cb0;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.otp-box.filled[b-0xbimw5r78] {
    border-color: #2b6cb0;
    background-color: #fff;
}

.otp-box:disabled[b-0xbimw5r78],
.otp-box.disabled[b-0xbimw5r78] {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Error Message */
.error-message[b-0xbimw5r78] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.error-message i[b-0xbimw5r78] {
    font-size: 1rem;
}

/* Verify Button */
.otp-verify-button[b-0xbimw5r78] {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4e8c 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.25);
}

.otp-verify-button:hover:not([disabled])[b-0xbimw5r78] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.35);
}

.otp-verify-button:active:not([disabled])[b-0xbimw5r78] {
    transform: translateY(0);
}

.otp-verify-button[disabled][b-0xbimw5r78] {
    background: #cbd5e1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.otp-verify-button i[b-0xbimw5r78] {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.otp-verify-button:hover:not([disabled]) i[b-0xbimw5r78] {
    transform: translateX(4px);
}

@keyframes spin-b-0xbimw5r78 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .home-page-container[b-0xbimw5r78] {
        padding: 1.5rem 1rem;
    }

    .auth-container[b-0xbimw5r78] {
        padding: 1.5rem;
    }

    .auth-title[b-0xbimw5r78] {
        font-size: 1.75rem;
    }

    .auth-subtitle[b-0xbimw5r78] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-container[b-0xbimw5r78] {
        padding: 1rem;
    }

    .auth-title[b-0xbimw5r78] {
        font-size: 1.5rem;
    }

    .auth-subtitle[b-0xbimw5r78] {
        font-size: 0.875rem;
    }

    .auth-button[b-0xbimw5r78] {
        padding: 8px 16px;
        font-size: 14px;
    }

    .otp-icon[b-0xbimw5r78] {
        width: 56px;
        height: 56px;
    }

    .otp-icon i[b-0xbimw5r78] {
        font-size: 24px;
    }

    .otp-title[b-0xbimw5r78] {
        font-size: 1.25rem;
    }

    .otp-boxes-container[b-0xbimw5r78] {
        gap: 4px;
    }

    .otp-group[b-0xbimw5r78] {
        gap: 4px;
    }

    .otp-separator[b-0xbimw5r78] {
        font-size: 1.25rem;
        padding: 0 2px;
    }

    .otp-box[b-0xbimw5r78] {
        width: 34px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .otp-verify-button[b-0xbimw5r78] {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/Welcome.razor.rz.scp.css */
.card[b-qnirzw77ez] {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.accordion-button:focus[b-qnirzw77ez] {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button:not(.collapsed)[b-qnirzw77ez] {
    color: #0c63e4;
    background-color: #e7f1ff;
}
