/* /Components/Layout/AppLayout.razor.rz.scp.css */
/* ── Shell principal ─────────────────────────────────────────────────────── */
.app-shell[b-uvkex5ttxy] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f0f2f5;
}

/* ── Capçalera ───────────────────────────────────────────────────────────── */
.app-header[b-uvkex5ttxy] {
    height: 60px;
    background: #0f3460;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
}

.sidebar-toggle[b-uvkex5ttxy] {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s;
}

    .sidebar-toggle:hover[b-uvkex5ttxy] {
        opacity: 1;
        background: rgba(255,255,255,0.12);
    }

.app-brand[b-uvkex5ttxy] {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    flex: 1;
}

.header-right[b-uvkex5ttxy] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-empresa[b-uvkex5ttxy] {
    font-size: 0.88rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.btn-logout[b-uvkex5ttxy] {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    padding: 0.3rem 0.85rem;
    font-size: 0.83rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

    .btn-logout:hover[b-uvkex5ttxy] {
        background: rgba(255,255,255,0.22);
    }

/* ── Cos (sidebar + contingut) ───────────────────────────────────────────── */
.app-body[b-uvkex5ttxy] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.sidebar[b-uvkex5ttxy] {
    width: 250px;
    background: #ffffff;
    border-right: 1px solid #eaedf2;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: width 0.25s ease, opacity 0.25s ease;
    overflow-x: hidden;
    overflow-y: auto;
}

    .sidebar[b-uvkex5ttxy]::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar[b-uvkex5ttxy]::-webkit-scrollbar-thumb {
        background: rgba(15,52,96,0.15);
        border-radius: 3px;
    }

.sidebar-collapsed[b-uvkex5ttxy] {
    width: 0;
    opacity: 0;
    pointer-events: none;
}

/* Fons fosc que apareix darrere del menú en mòbil */
.sidebar-backdrop[b-uvkex5ttxy] {
    display: none;
}

.nav-list[b-uvkex5ttxy] {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

    .nav-list li[b-uvkex5ttxy] {
        margin: 0.2rem 0.75rem;
    }

/* NavLink base */
.nav-list[b-uvkex5ttxy]  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    color: #5a6473;
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
    white-space: nowrap;
}

    .nav-list[b-uvkex5ttxy]  .nav-item:hover {
        background: #f4f7fc;
        color: #0f3460;
    }

    .nav-list[b-uvkex5ttxy]  .nav-item:active {
        transform: scale(0.98);
    }

/* Classe que afegeix Blazor NavLink quan la ruta coincideix */
.nav-list[b-uvkex5ttxy]  .nav-item.active {
    background: #eaf1fb;
    color: #0f3460;
    font-weight: 600;
}

    /* Barra indicadora de l'element actiu */
    .nav-list[b-uvkex5ttxy]  .nav-item.active::before {
        content: "";
        position: absolute;
        left: -0.75rem;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        border-radius: 0 4px 4px 0;
        background: #0f3460;
    }

.nav-list[b-uvkex5ttxy]  .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #f1f4f9;
    color: #5a6473;
    transition: background 0.18s ease, color 0.18s ease;
}

.nav-list[b-uvkex5ttxy]  .nav-item.active .nav-icon {
    background: #0f3460;
    color: #ffffff;
}

.nav-list[b-uvkex5ttxy]  .nav-item:hover .nav-icon {
    background: #e2e9f5;
    color: #0f3460;
}

.nav-list[b-uvkex5ttxy]  .nav-label {
    display: inline-block;
    line-height: 1;
}

/* ── Contingut principal ─────────────────────────────────────────────────── */
.app-content[b-uvkex5ttxy] {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    min-width: 0;
}

/* ── Peu de pàgina ─────────────────────────────────────────────────────────── */
.app-footer[b-uvkex5ttxy] {
    flex-shrink: 0;
    background: #0f3460;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

    .app-footer a[b-uvkex5ttxy] {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
    }

        .app-footer a:hover[b-uvkex5ttxy] {
            color: #ffffff;
            text-decoration: underline;
        }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@@media (max-width: 640px) {
    .sidebar[b-uvkex5ttxy] {
        position: fixed;
        top: 60px;
        left: 0;
        width: 260px;
        height: calc(100vh - 60px);
        z-index: 99;
        box-shadow: 4px 0 16px rgba(0,0,0,0.12);
        transform: translateX(0);
        transition: transform 0.25s ease;
        opacity: 1;
    }

    /* En mobil el menu es desplaça fora de la pantalla enlloc d'encongir-se */
    .sidebar.sidebar-collapsed[b-uvkex5ttxy] {
        width: 260px;
        opacity: 1;
        transform: translateX(-100%);
        pointer-events: none;
    }

    /* Fons fosc visible només quan el menú està obert en mòbil */
    .sidebar-backdrop.visible[b-uvkex5ttxy] {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.45);
        z-index: 98;
    }

    .header-empresa[b-uvkex5ttxy] {
        display: none;
    }

    .app-header[b-uvkex5ttxy] {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .app-brand[b-uvkex5ttxy] {
        font-size: 1.05rem;
    }

    .btn-logout[b-uvkex5ttxy] {
        padding: 0.3rem 0.6rem;
        font-size: 0.78rem;
    }

    /* Menys marge interior perquè el contingut no quedi tallat */
    .app-content[b-uvkex5ttxy] {
        padding: 1rem;
    }

    .app-footer[b-uvkex5ttxy] {
        font-size: 0.75rem;
        padding: 0.75rem 1rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main-footer[b-fkr63aqval] {
    background: #0f3460;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

    .main-footer a[b-fkr63aqval] {
        color: rgba(255,255,255,0.85);
        text-decoration: none;
    }

        .main-footer a:hover[b-fkr63aqval] {
            color: #ffffff;
            text-decoration: underline;
        }
/* /Components/Layout/PublicFooter.razor.rz.scp.css */
.public-footer[b-50ko37ipwi] {
    padding: 1.5rem 2rem;
    background: #0a1a2f;
    color: #9fb0c9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.public-footer-links[b-50ko37ipwi] {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.public-footer-links a[b-50ko37ipwi] {
    color: #9fb0c9;
    text-decoration: none;
}

.public-footer-links a:hover[b-50ko37ipwi] {
    color: #ffffff;
    text-decoration: underline;
}
/* /Components/Layout/PublicHeader.razor.rz.scp.css */
.public-nav[b-zopyozvzfz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
}

.public-brand[b-zopyozvzfz] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    text-decoration: none;
}

.public-brand-logo[b-zopyozvzfz] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(145deg, #16437a 0%, #0f3460 55%, #0a2547 100%);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.3),
                0 6px 14px rgba(15, 52, 96, 0.4);
}

.public-brand-logo svg[b-zopyozvzfz] {
    width: 22px;
    height: 22px;
}

.public-link-precios[b-zopyozvzfz] {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.02rem;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.public-nav-links[b-zopyozvzfz] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.public-link-precios:hover[b-zopyozvzfz] {
    opacity: 0.8;
    text-decoration: underline;
}

.public-btn-login[b-zopyozvzfz] {
    background: #ffffff;
    color: #0f3460;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.public-btn-login:hover[b-zopyozvzfz] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .public-nav[b-zopyozvzfz] {
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
        padding: 0.85rem 1.25rem;
    }

    /* Els enllaços deixen d'estar posicionats de forma absoluta */
    .public-nav-links[b-zopyozvzfz] {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.25rem;
        order: 3;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .public-nav[b-zopyozvzfz] {
        justify-content: center;
        text-align: center;
    }

    .public-nav-links[b-zopyozvzfz] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .public-brand-name[b-zopyozvzfz] {
        font-size: 1.05rem;
    }

    .public-btn-login[b-zopyozvzfz] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
.public-layout[b-yy6jj8k1to] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.public-main[b-yy6jj8k1to] {
    flex: 1;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-3cynjiqyuc],
.components-reconnect-repeated-attempt-visible[b-3cynjiqyuc],
.components-reconnect-failed-visible[b-3cynjiqyuc],
.components-pause-visible[b-3cynjiqyuc],
.components-resume-failed-visible[b-3cynjiqyuc],
.components-rejoining-animation[b-3cynjiqyuc] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-retrying[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-failed[b-3cynjiqyuc],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-3cynjiqyuc] {
    display: block;
}


#components-reconnect-modal[b-3cynjiqyuc] {
    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-3cynjiqyuc 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-3cynjiqyuc 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-3cynjiqyuc 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-3cynjiqyuc]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-3cynjiqyuc 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-3cynjiqyuc {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-3cynjiqyuc {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-3cynjiqyuc {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-3cynjiqyuc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-3cynjiqyuc] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-3cynjiqyuc] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-3cynjiqyuc] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-3cynjiqyuc] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-3cynjiqyuc] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-3cynjiqyuc] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-3cynjiqyuc 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-3cynjiqyuc] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-3cynjiqyuc {
    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/ConfirmarCuenta.razor.rz.scp.css */
.login-wrapper[b-1qhe620ebv] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 1.5rem 1rem;
}

.login-card[b-1qhe620ebv] {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.login-header[b-1qhe620ebv] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-logo[b-1qhe620ebv] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(145deg, #16437a 0%, #0f3460 55%, #0a2547 100%);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.35),
                inset 0 -3px 5px rgba(0, 0, 0, 0.45),
                0 8px 18px rgba(15, 52, 96, 0.4);
}

.login-logo svg[b-1qhe620ebv] {
    width: 34px;
    height: 34px;
}

.login-title[b-1qhe620ebv] {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.login-subtitle[b-1qhe620ebv] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.seccion-label[b-1qhe620ebv] {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin: 0;
}

.msg-ok[b-1qhe620ebv] {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 1.25rem;
    color: #065f46;
    font-size: 0.95rem;
    line-height: 1.6;
}

.msg-error[b-1qhe620ebv] {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 1.25rem;
    color: #b91c1c;
    font-size: 0.95rem;
    line-height: 1.6;
}

.login-actions[b-1qhe620ebv] {
    margin-top: 1.5rem;
}

.btn-primary[b-1qhe620ebv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0f3460;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

    .btn-primary:hover[b-1qhe620ebv] {
        background: #16213e;
        transform: translateY(-1px);
    }

.link-btn[b-1qhe620ebv] {
    background: none;
    border: none;
    color: #0f3460;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: inherit;
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.welcome-card[b-hbjxjg7ac1] {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.welcome-icon[b-hbjxjg7ac1] {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(145deg, #16437a 0%, #0f3460 55%, #0a2547 100%);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.35),
                inset 0 -3px 5px rgba(0, 0, 0, 0.45),
                0 8px 18px rgba(15, 52, 96, 0.4);
}

.welcome-icon svg[b-hbjxjg7ac1] {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.45))
            drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.25));
}

.welcome-card h2[b-hbjxjg7ac1] {
    color: #0f3460;
    font-size: 1.5rem;
    margin: 0;
}

.welcome-card p[b-hbjxjg7ac1] {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

/* /Components/Pages/Documentacion.razor.rz.scp.css */
.doc-intro[b-op6gx7x8f8] {
    color: #555;
    margin-bottom: 1.5rem;
}

.doc-section[b-op6gx7x8f8] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    max-width: 820px;
}

    .doc-section + .doc-section[b-op6gx7x8f8] {
        margin-top: 1.5rem;
    }

.doc-section__header[b-op6gx7x8f8] {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

    .doc-section__header h2[b-op6gx7x8f8] {
        margin: 0 0 .5rem;
        font-size: 1.5rem;
        color: #1f2937;
    }

.doc-section__lead[b-op6gx7x8f8] {
    margin: 0;
    color: #4b5563;
}

.doc-block[b-op6gx7x8f8] {
    margin-bottom: 1.75rem;
}

    .doc-block h3[b-op6gx7x8f8] {
        font-size: 1.15rem;
        color: #111827;
        margin: 0 0 .75rem;
    }

    .doc-block h4[b-op6gx7x8f8] {
        font-size: 1rem;
        color: #1f2937;
        margin: 0 0 .5rem;
    }

.doc-list[b-op6gx7x8f8] {
    margin: 0 0 .75rem;
    padding-left: 1.25rem;
}

    .doc-list li[b-op6gx7x8f8] {
        margin-bottom: .35rem;
    }

.doc-hint[b-op6gx7x8f8] {
    color: #6b7280;
    font-size: .925rem;
}

.doc-cards[b-op6gx7x8f8] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.doc-card[b-op6gx7x8f8] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 1.15rem;
}

    .doc-card h4[b-op6gx7x8f8] {
        margin-top: 0;
    }

    .doc-card p[b-op6gx7x8f8] {
        margin: 0 0 .5rem;
        color: #374151;
    }

.doc-card__note[b-op6gx7x8f8] {
    font-size: .875rem;
    color: #6b7280;
    font-style: italic;
}

.doc-steps[b-op6gx7x8f8] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

    .doc-steps li[b-op6gx7x8f8] {
        background: #eef2ff;
        color: #3730a3;
        border-radius: 999px;
        padding: .4rem 1rem;
        font-weight: 500;
        font-size: .925rem;
    }

.doc-note[b-op6gx7x8f8] {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
    padding: .85rem 1rem;
    color: #92400e;
    margin-top: 1.5rem;
}

.doc-success[b-op6gx7x8f8] {
    background: #dcfce7;
    border-left: 4px solid #22c55e;
    border-radius: 6px;
    padding: .85rem 1rem;
    color: #166534;
    margin-top: 1rem;
}

.doc-tip[b-op6gx7x8f8] {
    background: #e0f2fe;
    border-left: 4px solid #0ea5e9;
    border-radius: 6px;
    padding: .85rem 1rem;
    color: #075985;
    margin-top: 1.5rem;
}

.doc-list--columns[b-op6gx7x8f8] {
    columns: 2;
    column-gap: 2rem;
}

.doc-list--numbered[b-op6gx7x8f8] {
    list-style: decimal;
}

    .doc-list--numbered li[b-op6gx7x8f8] {
        margin-bottom: .5rem;
    }
/* /Components/Pages/Funcionalidades.razor.rz.scp.css */
.func-wrapper[b-iq7acodivr] {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: #ffffff;
}

.func-container[b-iq7acodivr] {
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.func-title[b-iq7acodivr] {
    color: #0f3460;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.func-subtitle[b-iq7acodivr] {
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 2.5rem auto;
}

.func-grid[b-iq7acodivr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.func-card[b-iq7acodivr] {
    background: #ffffff;
    border: 2px solid #0f3460;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 52, 96, 0.1);
    padding: 1.75rem;
}

.func-icon[b-iq7acodivr] {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.func-card h3[b-iq7acodivr] {
    color: #0f3460;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.func-card p[b-iq7acodivr] {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.func-actions[b-iq7acodivr] {
    margin-top: 2.5rem;
}

.func-volver[b-iq7acodivr] {
    color: #0f3460;
    font-weight: 600;
    text-decoration: none;
}

.func-volver:hover[b-iq7acodivr] {
    text-decoration: underline;
}
/* /Components/Pages/HojasTransporte.razor.rz.scp.css */
.page-header[b-8ve16wag42] {
    margin-bottom: 1.75rem;
}

    .page-header h2[b-8ve16wag42] {
        color: #0f3460;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0 0.25rem;
    }

    .page-header p[b-8ve16wag42] {
        color: #6c757d;
        margin: 0;
        font-size: 0.93rem;
    }

.empty-state[b-8ve16wag42] {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 480px;
    color: #6c757d;
}

.empty-icon[b-8ve16wag42] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

    .empty-icon svg[b-8ve16wag42] {
        width: 3rem;
        height: 3rem;
        color: #9aa7b8;
    }

.grid-toolbar[b-8ve16wag42] {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.date-range-filter[b-8ve16wag42] {
    display: flex;
    gap: 0.75rem;
    margin-left: auto;
    flex-wrap: wrap;
}

.date-range-field[b-8ve16wag42] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .date-range-field label[b-8ve16wag42] {
        font-size: 0.8rem;
        font-weight: 600;
        color: #0f3460;
    }

    .date-range-field .form-control[b-8ve16wag42] {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        border: 1px solid #d5dbe5;
        border-radius: 6px;
        color: #333;
    }

.btn-add[b-8ve16wag42] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #0f3460;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .btn-add:hover[b-8ve16wag42] {
        background: #16478a;
    }

.btn-add-icon[b-8ve16wag42] {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
}

.grid-card[b-8ve16wag42] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.grid-table[b-8ve16wag42] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

    .grid-table thead th[b-8ve16wag42] {
        background: #f4f6f9;
        color: #0f3460;
        text-align: left;
        font-weight: 700;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e3e8ef;
        white-space: nowrap;
    }

    .grid-table tbody td[b-8ve16wag42] {
        padding: 0.7rem 1rem;
        border-bottom: 1px solid #eef1f5;
        color: #333;
    }

    .grid-table tbody tr:last-child td[b-8ve16wag42] {
        border-bottom: none;
    }

    .grid-table tbody tr:hover td[b-8ve16wag42] {
        background: #f9fafc;
    }

    .grid-table thead .grid-filter-row th[b-8ve16wag42] {
        background: #fbfcfe;
        padding: 0.4rem 0.6rem;
        border-bottom: 1px solid #e3e8ef;
    }

.grid-filter-input[b-8ve16wag42] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
    border: 1px solid #d5dbe5;
    border-radius: 4px;
    color: #333;
}

    .grid-filter-input:focus[b-8ve16wag42] {
        outline: none;
        border-color: #0f3460;
        box-shadow: 0 0 0 2px rgba(15, 52, 96, 0.12);
    }

.text-center[b-8ve16wag42] {
    text-align: center;
}

.grid-empty[b-8ve16wag42] {
    text-align: center;
    color: #6c757d;
    padding: 2.5rem 1rem !important;
}

    .grid-empty .empty-icon[b-8ve16wag42] {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

        .grid-empty .empty-icon svg[b-8ve16wag42] {
            width: 2.75rem;
            height: 2.75rem;
        }

.btn-link[b-8ve16wag42] {
    background: none;
    border: none;
    color: #16478a;
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    transition: background 0.15s ease;
}

    .btn-link:hover[b-8ve16wag42] {
        background: #eef2fb;
        text-decoration: underline;
    }

.btn-link-danger[b-8ve16wag42] {
    color: #c0392b;
}

    .btn-link-danger:hover[b-8ve16wag42] {
        background: #fbeeee;
    }

/* Modal */
.modal-overlay[b-8ve16wag42] {
    position: fixed;
    inset: 0;
    background: rgba(15, 52, 96, 0.45);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 1rem;
    overflow-y: auto;
    z-index: 1000;
    pointer-events: auto;
}

.modal-dialog[b-8ve16wag42] {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 820px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

.modal-header[b-8ve16wag42] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #e3e8ef;
}

    .modal-header h3[b-8ve16wag42] {
        margin: 0;
        color: #0f3460;
        font-size: 1.2rem;
        font-weight: 700;
    }

.modal-close[b-8ve16wag42] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #6c757d;
    cursor: pointer;
}

    .modal-close:hover[b-8ve16wag42] {
        color: #0f3460;
    }

.modal-body[b-8ve16wag42] {
    padding: 1.25rem 1.5rem;
}

.modal-footer[b-8ve16wag42] {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e3e8ef;
}

.section-title[b-8ve16wag42] {
    color: #0f3460;
    font-size: 1rem;
    font-weight: 700;
    margin: 1.25rem 0 0.75rem;
}

    .section-title:first-child[b-8ve16wag42] {
        margin-top: 0;
    }

.section-header[b-8ve16wag42] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
}

    .section-header .section-title[b-8ve16wag42] {
        margin: 0;
    }

.form-grid[b-8ve16wag42] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

.form-row-3[b-8ve16wag42] {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.form-field[b-8ve16wag42] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

    .form-field label[b-8ve16wag42] {
        font-size: 0.82rem;
        font-weight: 600;
        color: #4a5568;
    }

.form-control[b-8ve16wag42] {
    width: 100%;
    padding: 0.5rem 0.7rem;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

    .form-control:focus[b-8ve16wag42] {
        outline: none;
        border-color: #16478a;
        box-shadow: 0 0 0 2px rgba(22, 71, 138, 0.15);
    }

.envios-table[b-8ve16wag42] {
    margin-top: 0.5rem;
}

    .envios-table thead th[b-8ve16wag42] {
        padding: 0.5rem 0.6rem;
    }

    .envios-table tbody td[b-8ve16wag42] {
        padding: 0.4rem 0.6rem;
    }

    .envios-table .form-control[b-8ve16wag42] {
        padding: 0.35rem 0.5rem;
        font-size: 0.85rem;
    }

.btn-add-sm[b-8ve16wag42] {
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
}

.btn-secondary[b-8ve16wag42] {
    background: #eef2f7;
    color: #0f3460;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .btn-secondary:hover[b-8ve16wag42] {
        background: #dde5ef;
    }

.form-error[b-8ve16wag42] {
    background: #fbeeee;
    color: #c0392b;
    border: 1px solid #f0c9c4;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.form-success[b-8ve16wag42] {
    background: #eafaf1;
    color: #1e8449;
    border: 1px solid #b9e4cd;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.modal-dialog-sm[b-8ve16wag42] {
    max-width: 440px;
}

@media (max-width: 640px) {
    .form-grid[b-8ve16wag42] {
        grid-template-columns: 1fr;
    }

    .form-row-3[b-8ve16wag42] {
        grid-template-columns: 1fr;
    }

    .modal-overlay[b-8ve16wag42] {
        padding: 1rem 0.5rem;
    }

    .modal-header[b-8ve16wag42],
    .modal-body[b-8ve16wag42],
    .modal-footer[b-8ve16wag42] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Permet desplaçar horitzontalment la taula d'enviaments dins el modal */
    .envios-table[b-8ve16wag42] {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .grid-toolbar[b-8ve16wag42] {
        justify-content: stretch;
    }

    .btn-add[b-8ve16wag42] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ── Fons i contenidor ──────────────────────────────────────────────────── */
.login-wrapper[b-u85sbofwxd] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 1.5rem 1rem;
}

.login-card[b-u85sbofwxd] {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: max-width 0.3s ease;
}

.login-card.card-registro[b-u85sbofwxd] {
    max-width: 560px;
}

/* ── Capçalera ──────────────────────────────────────────────────────────── */
.login-header[b-u85sbofwxd] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-logo[b-u85sbofwxd] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(145deg, #16437a 0%, #0f3460 55%, #0a2547 100%);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.35),
                inset 0 -3px 5px rgba(0, 0, 0, 0.45),
                0 8px 18px rgba(15, 52, 96, 0.4);
}

.login-logo svg[b-u85sbofwxd] {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.45))
            drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.25));
}

.login-title[b-u85sbofwxd] {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.login-subtitle[b-u85sbofwxd] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── Pestanyes ──────────────────────────────────────────────────────────── */
.tab-bar[b-u85sbofwxd] {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 1.75rem;
    gap: 0;
}

.tab-btn[b-u85sbofwxd] {
    flex: 1;
    background: none;
    border: none;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

    .tab-btn.active[b-u85sbofwxd] {
        color: #0f3460;
        border-bottom-color: #0f3460;
    }

    .tab-btn:hover:not(.active)[b-u85sbofwxd] {
        color: #343a40;
    }

/* ── Camps de formulari ─────────────────────────────────────────────────── */
.form-label[b-u85sbofwxd] {
    font-weight: 500;
    color: #343a40;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    display: block;
}

.req[b-u85sbofwxd] {
    color: #dc3545;
}

.form-control[b-u85sbofwxd] {
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.93rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

    .form-control:focus[b-u85sbofwxd] {
        border-color: #0f3460;
        box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.15);
        outline: none;
    }

    .form-control.is-invalid[b-u85sbofwxd] {
        border-color: #dc3545;
    }

.mb-3[b-u85sbofwxd] {
    margin-bottom: 1rem;
}

/* ── Dos columnes ───────────────────────────────────────────────────────── */
.row-2col[b-u85sbofwxd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

/* ── Etiqueta de secció ─────────────────────────────────────────────────── */
.seccion-label[b-u85sbofwxd] {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6c757d;
    margin: 1.25rem 0 0.75rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

/* ── Missatges ──────────────────────────────────────────────────────────── */
.msg-error[b-u85sbofwxd] {
    color: #dc3545;
    font-size: 0.83rem;
    margin-top: 0.3rem;
}

.msg-ok[b-u85sbofwxd] {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 1rem;
    color: #065f46;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ── Botó principal ─────────────────────────────────────────────────────── */
.btn-primary[b-u85sbofwxd] {
    width: 100%;
    padding: 0.75rem;
    background: #0f3460;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.1s;
}

    .btn-primary:hover:not(:disabled)[b-u85sbofwxd] {
        background: #16213e;
        transform: translateY(-1px);
    }

    .btn-primary:disabled[b-u85sbofwxd] {
        opacity: 0.7;
        cursor: not-allowed;
    }

/* ── Botó link ──────────────────────────────────────────────────────────── */
.link-btn[b-u85sbofwxd] {
    background: none;
    border: none;
    color: #0f3460;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: inherit;
}

.olvido-contrasena[b-u85sbofwxd] {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.88rem;
}

/* ── Indicador de força contrasenya ─────────────────────────────────────── */
.strength-bar-wrap[b-u85sbofwxd] {
    height: 5px;
    background: #e9ecef;
    border-radius: 99px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.strength-bar[b-u85sbofwxd] {
    height: 100%;
    border-radius: 99px;
    transition: width 0.3s ease, background 0.3s ease;
}

.strength-bar.strength-0[b-u85sbofwxd] { width: 0%; }
.strength-bar.strength-1[b-u85sbofwxd] { width: 20%; background: #dc3545; }
.strength-bar.strength-2[b-u85sbofwxd] { width: 40%; background: #fd7e14; }
.strength-bar.strength-3[b-u85sbofwxd] { width: 60%; background: #ffc107; }
.strength-bar.strength-4[b-u85sbofwxd] { width: 80%; background: #20c997; }
.strength-bar.strength-5[b-u85sbofwxd] { width: 100%; background: #198754; }

.strength-hints[b-u85sbofwxd] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.hint[b-u85sbofwxd] {
    font-size: 0.75rem;
    padding: 0.15rem 0.55rem;
    border-radius: 99px;
    background: #f1f3f5;
    color: #868e96;
    border: 1px solid #dee2e6;
    transition: background 0.2s, color 0.2s;
}

    .hint.ok[b-u85sbofwxd] {
        background: #d1fae5;
        color: #065f46;
        border-color: #6ee7b7;
    }

/* ── Spinner ────────────────────────────────────────────────────────────── */
.spinner[b-u85sbofwxd] {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
    flex-shrink: 0;
}

@@keyframes spin {
    to[b-u85sbofwxd] { transform: rotate(360deg); }
}

/* ── Adaptació a pantalles petites / mòbil ─────────────────────────────────── */
@@media (max-width: 600px) {
    .login-wrapper[b-u85sbofwxd] {
        padding: 1rem 0.75rem;
        align-items: flex-start;
    }

    .login-card[b-u85sbofwxd],
    .login-card.card-registro[b-u85sbofwxd] {
        max-width: 100%;
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
    }

    .login-title[b-u85sbofwxd] {
        font-size: 1.6rem;
    }

    .login-logo[b-u85sbofwxd] {
        width: 56px;
        height: 56px;
    }

    /* Les dues columnes passen a una sola */
    .row-2col[b-u85sbofwxd] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Pestanyes (menú) més compactes i sense desbordar */
    .tab-btn[b-u85sbofwxd] {
        padding: 0.6rem 0.5rem;
        font-size: 0.9rem;
    }
}

@@media (max-width: 380px) {
    .login-card[b-u85sbofwxd],
    .login-card.card-registro[b-u85sbofwxd] {
        padding: 1.5rem 1rem;
    }

    .login-title[b-u85sbofwxd] {
        font-size: 1.4rem;
    }

    .tab-btn[b-u85sbofwxd] {
        font-size: 0.82rem;
        padding: 0.55rem 0.35rem;
    }
}

/* /Components/Pages/Landing.razor.rz.scp.css */
/* ── Base ───────────────────────────────────────────────────────────────── */
.landing[b-j49sd3tr19] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #1a1a2e;
}

/* ── Barra de navegació ─────────────────────────────────────────────────── */
.landing-nav[b-j49sd3tr19] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
}

.landing-brand[b-j49sd3tr19] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 1.15rem;
}

.brand-logo[b-j49sd3tr19] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(145deg, #16437a 0%, #0f3460 55%, #0a2547 100%);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.3),
                0 6px 14px rgba(15, 52, 96, 0.4);
}

.brand-logo svg[b-j49sd3tr19] {
    width: 22px;
    height: 22px;
}

.btn-login-nav[b-j49sd3tr19] {
    background: #ffffff;
    color: #0f3460;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.landing-nav-actions[b-j49sd3tr19] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link-precios[b-j49sd3tr19] {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.02rem;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.landing-nav-links[b-j49sd3tr19] {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link-precios:hover[b-j49sd3tr19] {
    opacity: 0.8;
    text-decoration: underline;
}

.btn-login-nav:hover[b-j49sd3tr19] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.landing-hero[b-j49sd3tr19] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge[b-j49sd3tr19] {
    display: inline-block;
    background: #e8f0fb;
    color: #0f3460;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hero-promo[b-j49sd3tr19] {
    display: inline-block;
    background: #e6f7ed;
    color: #1b7a43;
    border: 1px solid #b7e3c6;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-promo strong[b-j49sd3tr19] {
    color: #0f6b39;
}

.hero-title[b-j49sd3tr19] {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    color: #0f3460;
}

.hero-subtitle[b-j49sd3tr19] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 34rem;
}

.hero-actions[b-j49sd3tr19] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary[b-j49sd3tr19],
.btn-cta-secondary[b-j49sd3tr19] {
    border-radius: 10px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-cta-primary[b-j49sd3tr19] {
    background: linear-gradient(145deg, #16437a 0%, #0f3460 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 52, 96, 0.35);
}

.btn-cta-primary:hover[b-j49sd3tr19] {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 52, 96, 0.45);
}

.btn-cta-secondary[b-j49sd3tr19] {
    background: #ffffff;
    color: #0f3460;
    border: 1.5px solid #0f3460;
}

.btn-cta-secondary:hover[b-j49sd3tr19] {
    background: #f0f5fc;
    transform: translateY(-2px);
}

/* ── Visual del hero ────────────────────────────────────────────────────── */
.hero-visual[b-j49sd3tr19] {
    display: flex;
    justify-content: center;
}

.hero-image[b-j49sd3tr19] {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 52, 96, 0.25);
    border: 1px solid #eef2f7;
}

.hero-card[b-j49sd3tr19] {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 24px 60px rgba(15, 52, 96, 0.25);
    border: 1px solid #eef2f7;
}

.hero-card-header[b-j49sd3tr19] {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.hero-card-dot[b-j49sd3tr19] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d7deea;
}

.hero-card-line[b-j49sd3tr19] {
    height: 12px;
    border-radius: 6px;
    background: #eef2f7;
    margin-bottom: 0.75rem;
}

.hero-card-line.w-70[b-j49sd3tr19] { width: 70%; }
.hero-card-line.w-90[b-j49sd3tr19] { width: 90%; }
.hero-card-line.w-50[b-j49sd3tr19] { width: 50%; }

.hero-card-qr[b-j49sd3tr19] {
    margin-top: 1.25rem;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #0f3460;
    background: linear-gradient(145deg, #e8f0fb, #d6e4f7);
}

.hero-card-qr svg[b-j49sd3tr19] {
    width: 40px;
    height: 40px;
}

/* ── Característiques ────────────────────────────────────────────────────── */
.landing-features[b-j49sd3tr19] {
    padding: 3.5rem 2rem;
    background: #f7f9fc;
}

.features-title[b-j49sd3tr19] {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 2.5rem;
}

.features-grid[b-j49sd3tr19] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}

.feature-card[b-j49sd3tr19] {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 6px 18px rgba(15, 52, 96, 0.08);
    border: 1px solid #eef2f7;
}

.feature-icon[b-j49sd3tr19] {
    font-size: 1.9rem;
    margin-bottom: 0.85rem;
}

.feature-card h3[b-j49sd3tr19] {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 0.5rem;
}

.feature-card p[b-j49sd3tr19] {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4a5568;
    margin: 0;
}

/* ── CTA final ──────────────────────────────────────────────────────────── */
.landing-cta[b-j49sd3tr19] {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
}

.landing-cta h2[b-j49sd3tr19] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.landing-cta p[b-j49sd3tr19] {
    font-size: 1.05rem;
    color: #c7d3e6;
    margin-bottom: 2rem;
}

.landing-cta .hero-actions[b-j49sd3tr19] {
    justify-content: center;
}

/* ── Peu de pàgina ──────────────────────────────────────────────────────── */
.landing-footer[b-j49sd3tr19] {
    margin-top: auto;
    padding: 1.5rem 2rem;
    background: #0a1a2f;
    color: #9fb0c9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.landing-footer-links[b-j49sd3tr19] {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.landing-footer-links a[b-j49sd3tr19] {
    color: #9fb0c9;
    text-decoration: none;
}

.landing-footer-links a:hover[b-j49sd3tr19] {
    color: #ffffff;
    text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .landing-hero[b-j49sd3tr19] {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .hero-subtitle[b-j49sd3tr19] {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions[b-j49sd3tr19] {
        justify-content: center;
    }

    .hero-visual[b-j49sd3tr19] {
        order: -1;
    }

    .hero-title[b-j49sd3tr19] {
        font-size: 2.1rem;
    }

    /* ── Barra de navegació responsive ── */
    .landing-nav[b-j49sd3tr19] {
        flex-wrap: wrap;
        gap: 0.75rem 1rem;
        padding: 0.85rem 1.25rem;
    }

    /* Els enllaços deixen de estar posicionats de forma absoluta */
    .landing-nav-links[b-j49sd3tr19] {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.25rem;
        order: 3;
        width: 100%;
    }

    .landing-nav-actions[b-j49sd3tr19] {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .landing-nav[b-j49sd3tr19] {
        justify-content: center;
        text-align: center;
    }

    .landing-nav-actions[b-j49sd3tr19] {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .landing-nav-links[b-j49sd3tr19] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .brand-name[b-j49sd3tr19] {
        font-size: 1.05rem;
    }

    .btn-login-nav[b-j49sd3tr19] {
        width: 100%;
    }
}
/* /Components/Pages/Precios.razor.rz.scp.css */
.precios-wrapper[b-kvkathn3h7] {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #ffffff;
}

.precios-card[b-kvkathn3h7] {
    background: #ffffff;
    border: 2px solid #0f3460;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 52, 96, 0.15);
    padding: 2.5rem;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.precios-title[b-kvkathn3h7] {
    color: #0f3460;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.precios-precio[b-kvkathn3h7] {
    color: #16437a;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
}

.precios-texto[b-kvkathn3h7] {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.precios-trial[b-kvkathn3h7] {
    color: #16437a;
    font-size: 1.05rem;
    font-weight: 600;
    background: #eef4fb;
    border: 1px solid #cfe0f2;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-top: 1.5rem;
}

.precios-actions[b-kvkathn3h7] {
    margin-top: 1.75rem;
}

.precios-volver[b-kvkathn3h7] {
    color: #0f3460;
    font-weight: 600;
    text-decoration: none;
}

.precios-volver:hover[b-kvkathn3h7] {
    text-decoration: underline;
}
/* /Components/Pages/Predefinir.razor.rz.scp.css */
.page-header[b-2f3ns6gmsv] {
    margin-bottom: 1.75rem;
}

    .page-header h2[b-2f3ns6gmsv] {
        color: #0f3460;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 0 0.25rem;
    }

    .page-header p[b-2f3ns6gmsv] {
        color: #6c757d;
        margin: 0;
        font-size: 0.93rem;
    }

.predefinir-card[b-2f3ns6gmsv] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 1.25rem 1.5rem 1.5rem;
    max-width: 900px;
}

.section-header[b-2f3ns6gmsv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.section-title[b-2f3ns6gmsv] {
    color: #0f3460;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.btn-add[b-2f3ns6gmsv] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #0f3460;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .btn-add:hover[b-2f3ns6gmsv] {
        background: #16478a;
    }

    .btn-add:disabled[b-2f3ns6gmsv] {
        opacity: 0.6;
        cursor: default;
    }

.btn-add-sm[b-2f3ns6gmsv] {
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
}

.btn-add-icon[b-2f3ns6gmsv] {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
}

.grid-table[b-2f3ns6gmsv] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

    .grid-table thead th[b-2f3ns6gmsv] {
        background: #f4f6f9;
        color: #0f3460;
        text-align: left;
        font-weight: 700;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e3e8ef;
        white-space: nowrap;
    }

    .grid-table tbody td[b-2f3ns6gmsv] {
        padding: 0.7rem 1rem;
        border-bottom: 1px solid #eef1f5;
        color: #333;
    }

    .grid-table tbody tr:last-child td[b-2f3ns6gmsv] {
        border-bottom: none;
    }

    .grid-table tbody tr:hover td[b-2f3ns6gmsv] {
        background: #f9fafc;
    }

.envios-table[b-2f3ns6gmsv] {
    margin-top: 0.5rem;
}

    .envios-table thead th[b-2f3ns6gmsv] {
        padding: 0.5rem 0.6rem;
    }

    .envios-table tbody td[b-2f3ns6gmsv] {
        padding: 0.4rem 0.6rem;
    }

    .envios-table .form-control[b-2f3ns6gmsv] {
        padding: 0.35rem 0.5rem;
        font-size: 0.85rem;
    }

.form-control[b-2f3ns6gmsv] {
    width: 100%;
    padding: 0.5rem 0.7rem;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    font-size: 0.9rem;
    box-sizing: border-box;
}

    .form-control:focus[b-2f3ns6gmsv] {
        outline: none;
        border-color: #16478a;
        box-shadow: 0 0 0 2px rgba(22, 71, 138, 0.15);
    }

.text-center[b-2f3ns6gmsv] {
    text-align: center;
}

.grid-empty[b-2f3ns6gmsv] {
    text-align: center;
    color: #6c757d;
    padding: 2.5rem 1rem !important;
}

.btn-link[b-2f3ns6gmsv] {
    background: none;
    border: none;
    color: #16478a;
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    transition: background 0.15s ease;
}

    .btn-link:hover[b-2f3ns6gmsv] {
        background: #eef2fb;
        text-decoration: underline;
    }

.btn-link-danger[b-2f3ns6gmsv] {
    color: #c0392b;
}

    .btn-link-danger:hover[b-2f3ns6gmsv] {
        background: #fbeeee;
    }

.card-footer[b-2f3ns6gmsv] {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.form-error[b-2f3ns6gmsv] {
    background: #fbeeee;
    color: #c0392b;
    border: 1px solid #f0c9c4;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

.form-success[b-2f3ns6gmsv] {
    background: #eafaf1;
    color: #1e8449;
    border: 1px solid #b9e4cd;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    max-width: 900px;
}

@media (max-width: 640px) {
    .predefinir-card[b-2f3ns6gmsv] {
        padding: 1rem;
    }

    .section-header[b-2f3ns6gmsv] {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn-add[b-2f3ns6gmsv] {
        width: 100%;
        justify-content: center;
    }

    /* La taula pot desplaçar-se horitzontalment en comptes de tallar-se */
    .grid-table[b-2f3ns6gmsv] {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}
/* /Components/Pages/RequisitosLegales.razor.rz.scp.css */
.requisitos-wrapper[b-mhepore8pj] {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: #ffffff;
}

.requisitos-card[b-mhepore8pj] {
    background: #ffffff;
    border: 2px solid #0f3460;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 52, 96, 0.15);
    padding: 2.5rem;
    max-width: 720px;
    width: 100%;
}

.requisitos-title[b-mhepore8pj] {
    color: #0f3460;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
}

.requisitos-texto[b-mhepore8pj] {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.requisitos-lista[b-mhepore8pj] {
    color: #495057;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
}

.requisitos-lista li[b-mhepore8pj] {
    margin-bottom: 0.5rem;
}

.requisitos-actions[b-mhepore8pj] {
    margin-top: 1.75rem;
    text-align: center;
}

.requisitos-volver[b-mhepore8pj] {
    color: #0f3460;
    font-weight: 600;
    text-decoration: none;
}

.requisitos-volver:hover[b-mhepore8pj] {
    text-decoration: underline;
}
/* /Components/Pages/RestablecerContrasena.razor.rz.scp.css */
.login-wrapper[b-2ezbcnp7s3] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 1.5rem 1rem;
}

.login-card[b-2ezbcnp7s3] {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-header[b-2ezbcnp7s3] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-logo[b-2ezbcnp7s3] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(145deg, #16437a 0%, #0f3460 55%, #0a2547 100%);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.35),
                inset 0 -3px 5px rgba(0, 0, 0, 0.45),
                0 8px 18px rgba(15, 52, 96, 0.4);
}

.login-logo svg[b-2ezbcnp7s3] {
    width: 34px;
    height: 34px;
}

.login-title[b-2ezbcnp7s3] {
    font-size: 2rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.login-subtitle[b-2ezbcnp7s3] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.form-label[b-2ezbcnp7s3] {
    font-weight: 500;
    color: #343a40;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    display: block;
}

.req[b-2ezbcnp7s3] {
    color: #dc3545;
}

.form-control[b-2ezbcnp7s3] {
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.93rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

    .form-control:focus[b-2ezbcnp7s3] {
        border-color: #0f3460;
        box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.15);
        outline: none;
    }

.mb-3[b-2ezbcnp7s3] {
    margin-bottom: 1rem;
}

.seccion-label[b-2ezbcnp7s3] {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

.msg-error[b-2ezbcnp7s3] {
    color: #dc3545;
    font-size: 0.83rem;
    margin-top: 0.3rem;
}

.msg-ok[b-2ezbcnp7s3] {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 1rem;
    color: #065f46;
    font-size: 0.92rem;
    line-height: 1.5;
}

.btn-primary[b-2ezbcnp7s3] {
    width: 100%;
    padding: 0.75rem;
    background: #0f3460;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.1s;
}

    .btn-primary:hover:not(:disabled)[b-2ezbcnp7s3] {
        background: #16213e;
        transform: translateY(-1px);
    }

    .btn-primary:disabled[b-2ezbcnp7s3] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.link-btn[b-2ezbcnp7s3] {
    background: none;
    border: none;
    color: #0f3460;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: inherit;
}

.volver[b-2ezbcnp7s3] {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.88rem;
}

.spinner[b-2ezbcnp7s3] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}

@@keyframes spin {
    to[b-2ezbcnp7s3] { transform: rotate(360deg); }
}
/* /Components/Pages/Suscripcion.razor.rz.scp.css */
.sub-plans[b-adfir73p0m] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.sub-card[b-adfir73p0m] {
    max-width: 460px;
    margin-top: 1rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.sub-plans .sub-card[b-adfir73p0m] {
    flex: 1 1 300px;
    margin-top: 0;
}

.sub-card-active[b-adfir73p0m] {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.sub-card-selected[b-adfir73p0m] {
    border-color: #0f3460;
    box-shadow: 0 12px 30px rgba(15, 52, 96, 0.18);
}

.sub-badge[b-adfir73p0m] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sub-price[b-adfir73p0m] {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.sub-amount[b-adfir73p0m] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}

.sub-period[b-adfir73p0m] {
    font-size: 1rem;
    color: #64748b;
}

.sub-card h2[b-adfir73p0m] {
    font-size: 1.25rem;
    margin: 0.25rem 0 1rem;
    color: #0f172a;
}

.sub-features[b-adfir73p0m],
.sub-details[b-adfir73p0m] {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.sub-features li[b-adfir73p0m] {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    color: #334155;
}

.sub-features li[b-adfir73p0m]::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.sub-details li[b-adfir73p0m] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.sub-details li span[b-adfir73p0m] {
    color: #64748b;
}

.sub-btn[b-adfir73p0m] {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #0f3460;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

    .sub-btn:hover:not(:disabled)[b-adfir73p0m] {
        background: #16213e;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(15, 52, 96, 0.25);
    }

    .sub-btn:disabled[b-adfir73p0m] {
        opacity: 0.7;
        cursor: not-allowed;
    }

.sub-secure[b-adfir73p0m] {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.sub-note[b-adfir73p0m] {
    color: #64748b;
    font-size: 0.9rem;
}

.sub-alert[b-adfir73p0m] {
    max-width: 640px;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.sub-alert-ok[b-adfir73p0m] {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.sub-alert-error[b-adfir73p0m] {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
