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

main[b-bm3o5wr2xx] {
    flex: 1;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-wu5gw8j2td],
.components-reconnect-repeated-attempt-visible[b-wu5gw8j2td],
.components-reconnect-failed-visible[b-wu5gw8j2td],
.components-pause-visible[b-wu5gw8j2td],
.components-resume-failed-visible[b-wu5gw8j2td],
.components-rejoining-animation[b-wu5gw8j2td] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-retrying[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-failed[b-wu5gw8j2td],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-wu5gw8j2td] {
    display: block;
}


#components-reconnect-modal[b-wu5gw8j2td] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-wu5gw8j2td 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-wu5gw8j2td 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-wu5gw8j2td 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-wu5gw8j2td]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-wu5gw8j2td 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-wu5gw8j2td {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-wu5gw8j2td {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-wu5gw8j2td {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-wu5gw8j2td] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-wu5gw8j2td] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-wu5gw8j2td] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-wu5gw8j2td] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-wu5gw8j2td] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-wu5gw8j2td] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-wu5gw8j2td] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-wu5gw8j2td 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-wu5gw8j2td] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-wu5gw8j2td {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/SubscriptionPage.razor.rz.scp.css */
/* Page Layout */
.page-container[b-a09iossvs5] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FAFAFA;
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

/* Header Section */
.header-section[b-a09iossvs5] {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
}

.brand-header[b-a09iossvs5] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.brand-logo[b-a09iossvs5] {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.brand-name[b-a09iossvs5] {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-title[b-a09iossvs5] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sub-title[b-a09iossvs5] {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Pricing Grid */
.pricing-grid[b-a09iossvs5] {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 4rem;
    align-items: stretch;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .pricing-grid[b-a09iossvs5] {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* Pricing Card */
.pricing-card[b-a09iossvs5] {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid #E5E7EB;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover[b-a09iossvs5] {
    border-color: #1E6FFF;
    background-color: #F0F7FF;
}

.pricing-card.featured[b-a09iossvs5] {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover[b-a09iossvs5] {
    border-color: #1E6FFF;
}

.most-popular-badge[b-a09iossvs5] {
    position: absolute;
    top: 20px;
    right: -40px;
    left: auto;
    transform: rotate(45deg);
    background-color: #1E6FFF;
    color: white;
    padding: 0.5rem 0;
    width: 150px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.plan-name[b-a09iossvs5] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.plan-employee-count[b-a09iossvs5] {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pricing-card.featured .plan-employee-count[b-a09iossvs5] {
    color: #1E6FFF;
}

.price-container[b-a09iossvs5] {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.price-currency[b-a09iossvs5] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.price-amount[b-a09iossvs5] {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.featured .price-amount[b-a09iossvs5],
.featured .price-currency[b-a09iossvs5] {
    color: #1E6FFF;
}

.price-period[b-a09iossvs5] {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 4px;
}

/* Features List */
.features-list[b-a09iossvs5] {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.feature-item[b-a09iossvs5] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
    font-size: 0.95rem;
}

.check-icon[b-a09iossvs5] {
    color: #1E6FFF;
    font-size: 0.875rem;
}

/* Buttons */
.card-btn[b-a09iossvs5] {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: white;
    border: 1px solid #E5E7EB;
    color: #111;
}

.card-btn:hover[b-a09iossvs5] {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.pricing-card.featured .card-btn[b-a09iossvs5] {
    background-color: #1E6FFF;
    color: white;
    border: 1px solid #1E6FFF;
    box-shadow: 0 4px 6px -1px rgba(30, 111, 255, 0.3);
}

.pricing-card.featured .card-btn:hover[b-a09iossvs5] {
    background-color: #1652C0;
    border-color: #1652C0;
}

/* Footer */
.footer-text[b-a09iossvs5] {
    color: #9CA3AF;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

/* --- NEW MODAL STYLES --- */

/* Modal Backdrop */
.modal-backdrop[b-a09iossvs5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    /* Darker backdrop as per example usually, keeping consistent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

/* Modal Card */
.modal-card[b-a09iossvs5] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 480px;
    padding: 24px;
    font-family: 'Inter', sans-serif;
    animation: fadeIn-b-a09iossvs5 0.2s ease-out;
}

@keyframes fadeIn-b-a09iossvs5 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Modal Header */
.modal-header[b-a09iossvs5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-brand[b-a09iossvs5] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
}

.modal-close[b-a09iossvs5] {
    background: none;
    border: none;
    cursor: pointer;
    color: #6B7280;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.modal-close:hover[b-a09iossvs5] {
    background: #F3F4F6;
    color: #111;
}

/* Modal Body */
.modal-title[b-a09iossvs5] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px 0;
}

.modal-subtitle[b-a09iossvs5] {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

/* Input Section */
.input-label[b-a09iossvs5] {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.vat-input-group[b-a09iossvs5] {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.vat-input[b-a09iossvs5] {
    flex-grow: 1;
    padding: 10px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #F9FAFB;
    color: #111;
    transition: border-color 0.2s;
}

.vat-input:focus[b-a09iossvs5] {
    outline: none;
    border-color: #2563EB;
    background: white;
}

.full-width[b-a09iossvs5] {
    width: 100%;
    margin-bottom: 16px;
}

/* Buttons */
.btn-primary[b-a09iossvs5] {
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover[b-a09iossvs5] {
    background-color: #1D4ED8;
}

.btn-primary:disabled[b-a09iossvs5] {
    background-color: #93C5FD;
    cursor: not-allowed;
}

.btn-text[b-a09iossvs5] {
    background: none;
    border: none;
    color: #4B5563;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-text:hover[b-a09iossvs5] {
    color: #111;
}

.btn-secondary[b-a09iossvs5] {
    background-color: #E5E7EB;
    color: #111;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-secondary:hover[b-a09iossvs5] {
    background-color: #D1D5DB;
}

/* Status Cards */
.status-card[b-a09iossvs5] {
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.status-card.success[b-a09iossvs5] {
    background-color: #F0FDF4;
    /* Light green */
    border: 1px solid #DCFCE7;
}

.status-card.error[b-a09iossvs5] {
    background-color: #FEF2F2;
    /* Light red */
    border: 1px solid #FEE2E2;
}

.status-icon[b-a09iossvs5] {
    flex-shrink: 0;
    margin-top: 2px;
}

.success .status-icon[b-a09iossvs5] {
    color: #16A34A;
}

.error .status-icon[b-a09iossvs5] {
    color: #DC2626;
}

.status-content[b-a09iossvs5] {
    flex-grow: 1;
}

.status-title[b-a09iossvs5] {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.success .status-title[b-a09iossvs5] {
    color: #166534;
}

.error .status-title[b-a09iossvs5] {
    color: #991B1B;
}

.status-desc[b-a09iossvs5] {
    font-size: 0.85rem;
}

.success .status-desc[b-a09iossvs5] {
    color: #16A34A;
}

.error .status-desc[b-a09iossvs5] {
    color: #B91C1C;
}

.change-id-link[b-a09iossvs5] {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #166534;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    /* Adjust alignment */
    white-space: nowrap;
}

.additional-info-section[b-a09iossvs5] {
    animation: fadeIn-b-a09iossvs5 0.3s ease-out;
}

/* Modal Footer */
.modal-footer[b-a09iossvs5] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #F3F4F6;
    padding-top: 16px;
}
