@import '_content/ReactorBlazorQRCodeScanner/ReactorBlazorQRCodeScanner.boasv5qmh0.bundle.scp.css';

/* _content/rbs.Portal/Components/Components/ConsumableItem.razor.rz.scp.css */
/* Estilos visuales mejorados - Respetando tamaños originales */

/* Card base */
.product-card[b-sz9ocsimmu] {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Card con producto seleccionado - Feedback visual */
.product-card.has-quantity[b-sz9ocsimmu] {
    background: linear-gradient(145deg, #ffffff 0%, #f0fff0 100%);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
    border: 2px solid var(--bg-darkgreen, #2d5016);
}

/* Badge de cantidad en esquina superior derecha */
.quantity-badge[b-sz9ocsimmu] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--bg-darkgreen, #2d5016);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    z-index: 10;
    animation: popIn-b-sz9ocsimmu 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn-b-sz9ocsimmu {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Card con producto - Efecto hover */
[b-sz9ocsimmu] .rz-card {
    transition: all 0.3s ease;
    border-radius: 12px !important;
    overflow: hidden;
}

/* Efecto hover sutil */
[b-sz9ocsimmu] .rz-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 16px rgba(0,0,0,0.15) !important;
}

/* Mejora visual de iconos */
[b-sz9ocsimmu] .rz-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    color: var(--bg-darkgreen, #2d5016) !important;
}

/* Mejora visual de imágenes */
[b-sz9ocsimmu] .rz-image img {
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Nombre del producto más legible */
[b-sz9ocsimmu] .rz-text.rz-text-subtitle2 {
    font-weight: 600 !important;
    color: #1a1a1a !important;
    line-height: 1.3 !important;
}

/* Botón decrementar - Rojo atractivo */
[b-sz9ocsimmu] .rz-button[icon="remove_circle"] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.35) !important;
    transition: all 0.2s ease !important;
    width: 48px !important;
    height: 48px !important;
}

[b-sz9ocsimmu] .rz-button[icon="remove_circle"]:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.45) !important;
}

[b-sz9ocsimmu] .rz-button[icon="remove_circle"]:active {
    transform: scale(0.95);
}

[b-sz9ocsimmu] .rz-button[icon="remove_circle"]:disabled {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%) !important;
    opacity: 0.4;
    box-shadow: none !important;
    cursor: not-allowed;
}

[b-sz9ocsimmu] .rz-button[icon="remove_circle"] .rz-button-icon-left {
    color: white !important;
    font-size: 1.5rem;
}

/* Botón incrementar - Verde atractivo */
[b-sz9ocsimmu] .rz-button[icon="add_circle"] {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: 0 3px 10px rgba(64, 192, 87, 0.35) !important;
    transition: all 0.2s ease !important;
    width: 48px !important;
    height: 48px !important;
}

[b-sz9ocsimmu] .rz-button[icon="add_circle"]:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(64, 192, 87, 0.45) !important;
}

[b-sz9ocsimmu] .rz-button[icon="add_circle"]:active {
    transform: scale(0.95);
}

[b-sz9ocsimmu] .rz-button[icon="add_circle"] .rz-button-icon-left {
    color: white !important;
    font-size: 1.5rem;
}

/* Display de cantidad mejorado */
[b-sz9ocsimmu] .rz-text[style*="font-size: 1.8rem"] {
    font-weight: 800 !important;
    color: var(--bg-darkgreen, #2d5016) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.08);
    background: rgba(144, 238, 144, 0.15);
    padding: 4px 12px !important;
    border-radius: 8px;
    min-width: 60px;
    display: inline-block;
}
/* _content/rbs.Portal/Components/Components/Forms/PurchaseForm.razor.rz.scp.css */
.shopping-cart-dialog[b-en7dulnh7h] {
    padding: 24px 32px;
    background: #fff;
    border-radius: 16px;
    min-width: 350px;
    max-width: 500px;
}

.loading-container[b-en7dulnh7h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
}

.cart-items-list[b-en7dulnh7h] {
    margin-bottom: 24px;
}

.cart-item-header[b-en7dulnh7h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-item-title[b-en7dulnh7h] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-item-details[b-en7dulnh7h] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.98rem;
    color: #444;
}

.cart-actions[b-en7dulnh7h] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .shopping-cart-dialog[b-en7dulnh7h] {
        padding: 16px 8px;
        min-width: unset;
        max-width: 100vw;
    }
    .cart-actions[b-en7dulnh7h] {
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
    }
    .cart-actions .rz-button[b-en7dulnh7h] {
        min-width: 45vw !important;
        max-width: 180px;
    }
}
/* _content/rbs.Portal/Components/Components/Forms/ShoppingCartForm.razor.rz.scp.css */
.shopping-cart-dialog[b-x1t0st8lb8] {
    padding: 24px 32px;
    background: #fff;
    border-radius: 16px;
    min-width: 350px;
    max-width: 500px;
}

.loading-container[b-x1t0st8lb8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
}

.cart-items-list[b-x1t0st8lb8] {
    margin-bottom: 24px;
}

.cart-item-header[b-x1t0st8lb8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-item-title[b-x1t0st8lb8] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-item-details[b-x1t0st8lb8] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.98rem;
    color: #444;
}

.cart-actions[b-x1t0st8lb8] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .shopping-cart-dialog[b-x1t0st8lb8] {
        padding: 16px 8px;
        min-width: unset;
        max-width: 100vw;
    }
    .cart-actions[b-x1t0st8lb8] {
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
    }
    .cart-actions .rz-button[b-x1t0st8lb8] {
        min-width: 45vw !important;
        max-width: 180px;
    }
}
/* _content/rbs.Portal/Components/Components/Forms/SlotForm.razor.rz.scp.css */
.slot-form-row[b-mdby0j22us] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
}

.btn-custom[b-mdby0j22us] {
    margin-top: 8px;
}
/* _content/rbs.Portal/Components/Components/Forms/UserForm.razor.rz.scp.css */
.password-field[b-h90o7and4i] {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.password-input[b-h90o7and4i] {
    flex: 0 0 90%;
    max-width: 85%;
}

.password-toggle[b-h90o7and4i] {
    flex: 0 0 10%;
    max-width: 10%;
    display: flex;
    justify-content: flex-end;
}
/* _content/rbs.Portal/Components/Layout/CinderFooter.razor.rz.scp.css */
@media (min-width: 641px) {
    .page[b-uqbgcbflya] {
        flex-direction: row;
    }

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

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

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

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

@media (max-width: 640.98px) {
    .top-row[b-uqbgcbflya] {
        justify-content: space-between;
    }

    .top-row[b-uqbgcbflya]  a, .top-row[b-uqbgcbflya]  .btn-link {
        margin-left: 0;
    }
}


.page[b-uqbgcbflya] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-uqbgcbflya] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.text-size[b-uqbgcbflya] {
    font-size: 0.7rem;
}

.top-row[b-uqbgcbflya] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-uqbgcbflya]  a, .top-row[b-uqbgcbflya]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-uqbgcbflya]  a:hover, .top-row[b-uqbgcbflya]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-uqbgcbflya]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

#blazor-error-ui[b-uqbgcbflya] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-uqbgcbflya] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.navigation .list[b-uqbgcbflya] {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
}

/* Círculo blanco centrado en el enlace */
.navigation .list a[b-uqbgcbflya] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
    color: var(--bg-darkgreen);
    text-decoration: none;
    transition: 0.3s ease;
    z-index: 1;
}

.navigation .list a[b-uqbgcbflya]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 35px;
    background: #fff;
    border-radius: 35px / 18px;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.navigation .list a:hover[b-uqbgcbflya]::before,
.navigation .list a.active[b-uqbgcbflya]::before {
    transform: translate(-50%, -70%) scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Efecto de respiración en el icono */
.navigation .list a .icon[b-uqbgcbflya] {
    position: relative;
    display: block;
    line-height: 40px;
    font-size: 3rem;
    text-align: center;
    transition: transform 0.5s ease;
    color: var(--bg-darkgreen);
}

.navigation .list a:hover:not(.active) .icon[b-uqbgcbflya] {
    transform: scale(1.2);
}

.navigation .list a.active .icon[b-uqbgcbflya] {
    transform: scale(1);
}
/* _content/rbs.Portal/Components/Layout/MainLayout.razor.rz.scp.css */
@media (min-width: 641px) {
    .page[b-dy4s7lvatq] {
        flex-direction: row;
    }

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

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

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

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

@media (max-width: 640.98px) {
    .top-row[b-dy4s7lvatq] {
        justify-content: space-between;
    }

    .top-row[b-dy4s7lvatq]  a, .top-row[b-dy4s7lvatq]  .btn-link {
        margin-left: 0;
    }
}


.page[b-dy4s7lvatq] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-dy4s7lvatq] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-dy4s7lvatq] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-dy4s7lvatq]  a, .top-row[b-dy4s7lvatq]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-dy4s7lvatq]  a:hover, .top-row[b-dy4s7lvatq]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-dy4s7lvatq]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
#blazor-error-ui[b-dy4s7lvatq] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-dy4s7lvatq] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    .navigation .list[b-dy4s7lvatq] {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

/* Círculo blanco centrado en el enlace */
        .navigation .list a[b-dy4s7lvatq] {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 100%;
            text-align: center;
            font-weight: 500;
            padding: 0.5rem;
            color: var(--bg-darkgreen);
            text-decoration: none;
            transition: 0.3s ease;
            z-index: 1;
        }

            .navigation .list a[b-dy4s7lvatq]::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 55px;
                height: 35px;
                background: #fff;
                border-radius: 35px / 18px;
                transform: translate(-50%, -50%) scale(0);
                transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: -1;
            }

                .navigation .list a:hover[b-dy4s7lvatq]::before,
                .navigation .list a.active[b-dy4s7lvatq]::before {
                    transform: translate(-50%, -70%) scale(1);
                    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                }

            /* Efecto de respiración en el icono */
            .navigation .list a .icon[b-dy4s7lvatq] {
                position: relative;
                display: block;
                line-height: 40px;
                font-size: 3rem;
                text-align: center;
                transition: transform 0.5s ease;
                color: var(--bg-darkgreen);
            }

                .navigation .list a:hover:not(.active) .icon[b-dy4s7lvatq] {
                    transform: scale(1.2);
                }
                
                .navigation .list a.active .icon[b-dy4s7lvatq] {
                    transform: scale(1);
                }
/* _content/rbs.Portal/Components/Pages/Configuration/Movements.razor.rz.scp.css */
.currency-movement-date-range[b-gicj7qajci] {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 10px;
}

@media (max-width: 600px) {
    .currency-movement-date-range[b-gicj7qajci] {
        flex-direction: column;
    }
}

.currency-movement-card-content[b-gicj7qajci] {
    padding: 20px 18px;
}

.currency-movement-card-title[b-gicj7qajci] {
    margin-bottom: 18px;
    font-size: 1.2em;
    font-weight: 600;
}

.currency-movement-income[b-gicj7qajci],
.currency-movement-expense[b-gicj7qajci],
.currency-movement-balance[b-gicj7qajci] {
    font-weight: bold;
}

.currency-movement-income[b-gicj7qajci] { color: #2e7d32; }
.currency-movement-expense[b-gicj7qajci] { color: #c62828; }
.currency-movement-balance[b-gicj7qajci] { color: #1565c0; }

.currency-movement-amount[b-gicj7qajci] {
    float: right;
    font-size: 1em;
}

.currency-movement-description[b-gicj7qajci] {
    font-size: 0.95em;
    color: #555;
}

.currency-movement-section[b-gicj7qajci] {
    margin-bottom: 14px;
}

/* Estilos para los inputs Radzen */
.rz-input[b-gicj7qajci],
.rz-datepicker[b-gicj7qajci] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    box-sizing: border-box;
    background: #fafafa;
    transition: border-color 0.2s;
}

.rz-input:focus[b-gicj7qajci],
.rz-datepicker:focus[b-gicj7qajci] {
    border-color: #1565c0;
    outline: none;
}
/* _content/rbs.Portal/Components/Pages/Configuration/Recharge.razor.rz.scp.css */
.recharge-container[b-pokkc4946o] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    padding: 20px;
}

.recharge-stack[b-pokkc4946o] {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 
                0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.recharge-stack[b-pokkc4946o]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
}

.recharge-title[b-pokkc4946o] {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    text-align: center;
}

.recharge-subtitle[b-pokkc4946o] {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 32px;
    text-align: center;
}

.recharge-input-wrapper[b-pokkc4946o] {
    margin-bottom: 28px;
    position: relative;
}

.recharge-input-label[b-pokkc4946o] {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
}

.recharge-input[b-pokkc4946o] {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
}

.recharge-input[b-pokkc4946o]  input {
    border-radius: 12px;
    border: 2px solid #e0e6ed;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.recharge-input[b-pokkc4946o]  input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.recharge-btn[b-pokkc4946o] {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recharge-btn:hover[b-pokkc4946o] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.recharge-user-section[b-pokkc4946o] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 2px solid #e0e6ed;
}

.recharge-user-label[b-pokkc4946o] {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.recharge-badge[b-pokkc4946o] {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.recharge-btn-group[b-pokkc4946o] {
    width: 100%;
    gap: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recharge-btn-half[b-pokkc4946o] {
    width: 48%;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.recharge-btn-half:hover[b-pokkc4946o] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bg-darkgreen[b-pokkc4946o] {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.bg-darkgreen:hover[b-pokkc4946o] {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
}

.recharge-divider[b-pokkc4946o] {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e6ed 50%, transparent 100%);
    margin: 24px 0;
}

.recharge-icon[b-pokkc4946o] {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.amount-display[b-pokkc4946o] {
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
    text-align: center;
    margin: 16px 0;
}
/* _content/rbs.Portal/Components/Pages/Configuration/Users.razor.rz.scp.css */
.rz-card[b-gbbcsro157] {
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* _content/rbs.Portal/Components/Pages/DownloadPage/DownloadApp.razor.rz.scp.css */
.download-app-container[b-8efktvylms] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e0e0e0;
}

.download-app-img[b-8efktvylms] {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 285px;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.btn-custom[b-8efktvylms] {
    background-color: #fff;
    color: #222;
    border: 1px solid #bbb;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.btn-custom:hover[b-8efktvylms] {
    background-color: #f5f5f5;
}

/* Asegura que el bloque de instrucciones quede visible sobre la imagen */
.install-instructions[b-8efktvylms] {
    position: relative;
    z-index: 2;
    background: #e0e0e0;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 16px 20px;
    max-width: 480px;
    margin: 0 16px;
}

.install-instructions h2[b-8efktvylms] {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.install-instructions .hint[b-8efktvylms] {
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 640px) {
    .download-app-img[b-8efktvylms] {
        background-size: 200px auto;
    }
}
/* _content/rbs.Portal/Components/Pages/MainPages/Barra.razor.rz.scp.css */
/* Main container - Full viewport height */
.main-container[b-1ggzmdq8dl] {
    overflow: hidden !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}

/* Header sticky superior - Compacto y siempre visible */
.header-bar[b-1ggzmdq8dl] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, var(--bg-lightgreen, #90EE90) 0%, #7FD87F 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 8px 12px;
    min-height: 60px;
}

.header-bar.with-user[b-1ggzmdq8dl] {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
}

/* Precio display - Grande y visible */
.price-display[b-1ggzmdq8dl] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* User info badge */
.user-badge[b-1ggzmdq8dl] {
    background: rgba(255,255,255,0.95);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: inline-block;
    margin-top: 4px;
}

.temporal-badge[b-1ggzmdq8dl] {
    background: #FF6B6B;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 6px;
}

/* Action buttons - Optimizados para táctil */
.action-buttons[b-1ggzmdq8dl] {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.btn-action[b-1ggzmdq8dl] {
    flex: 1;
    min-height: 44px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    max-width: 140px;
}

.btn-action:active[b-1ggzmdq8dl] {
    transform: scale(0.96);
}

/* Products container - Maximizar espacio */
.products-container[b-1ggzmdq8dl] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 8px 80px 8px;
    -webkit-overflow-scrolling: touch;
}

/* Grid de productos - 2 columnas compactas */
.products-grid[b-1ggzmdq8dl] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

/* Para pantallas muy pequeñas */
@media (max-width: 360px) {
    .products-grid[b-1ggzmdq8dl] {
        gap: 8px;
    }
    
    .price-display[b-1ggzmdq8dl] {
        font-size: 1.75rem;
    }
    
    .btn-action[b-1ggzmdq8dl] {
        font-size: 0.75rem;
        min-height: 40px;
    }
}

/* Para pantallas medianas - 3 columnas */
@media (min-width: 480px) {
    .products-grid[b-1ggzmdq8dl] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Para tablets - 4 columnas */
@media (min-width: 768px) {
    .products-grid[b-1ggzmdq8dl] {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .products-container[b-1ggzmdq8dl] {
        padding: 16px 12px 80px 12px;
    }
}

/* Scrollbar personalizado para webkit */
.products-container[b-1ggzmdq8dl]::-webkit-scrollbar {
    width: 6px;
}

.products-container[b-1ggzmdq8dl]::-webkit-scrollbar-track {
    background: transparent;
}

.products-container[b-1ggzmdq8dl]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.products-container[b-1ggzmdq8dl]::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Loading state */
.loading-overlay[b-1ggzmdq8dl] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
/* _content/rbs.Portal/Components/Pages/MainPages/Contacts.razor.rz.scp.css */
[b-6rk112ia7k] .floating-button-wrapper {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 9999 !important;
    pointer-events: none !important;
}

[b-6rk112ia7k] .floating-button {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--rz-primary) !important;
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.2), 
                0 6px 10px 0 rgba(0,0,0,.14), 
                0 1px 18px 0 rgba(0,0,0,.12) !important;
    pointer-events: auto !important;
}

[b-6rk112ia7k] .floating-button:hover {
    background-color: var(--rz-primary-light) !important;
}

[b-6rk112ia7k] .floating-button .rz-button-icon {
    font-size: 24px !important;
    margin: 0 !important;
}

/* Asegurarse de que el contenedor principal tenga una posición relativa */
.main-content[b-6rk112ia7k] {
    position: relative;
}
/* _content/rbs.Portal/Components/Pages/MainPages/HistoricalMovementsUser.razor.rz.scp.css */
.container-fluid[b-m7go5s2hjn] {
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.overlay-loading[b-m7go5s2hjn] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.overlay-loading-content[b-m7go5s2hjn] {
    width: 320px;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.overlay-loading-title[b-m7go5s2hjn] {
    display: block;
    margin-bottom: 0.75rem;
}

.summary-card-income[b-m7go5s2hjn] {
    background-color: #d4edda;
}

.summary-card-income-text[b-m7go5s2hjn] {
    color: #155724;
}

.summary-card-expenses[b-m7go5s2hjn] {
    background-color: #f8d7da;
}

.summary-card-expenses-text[b-m7go5s2hjn] {
    color: #721c24;
}

.empty-state-icon[b-m7go5s2hjn] {
    font-size: 3rem;
    color: #ccc;
}

/* Estilos para las cards de movimientos */
.movements-container[b-m7go5s2hjn] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.movement-card[b-m7go5s2hjn] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.movement-card:hover[b-m7go5s2hjn] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.movement-icon[b-m7go5s2hjn] {
    font-size: 2rem;
}

.icon-column[b-m7go5s2hjn] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.movement-date[b-m7go5s2hjn] {
    font-weight: 500;
}

.movement-badge[b-m7go5s2hjn] {
    display: inline-flex;
}

.label-text[b-m7go5s2hjn] {
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.text-end[b-m7go5s2hjn] {
    text-align: right;
}

.showing-text[b-m7go5s2hjn] {
    color: #666;
    text-align: center;
}

/* Fix para placeholders en dropdowns */
[b-m7go5s2hjn] .rz-dropdown .rz-dropdown-label {
    color: #666 !important;
}

[b-m7go5s2hjn] .rz-dropdown:not(.rz-state-disabled):hover .rz-dropdown-label {
    color: #333 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .container-fluid[b-m7go5s2hjn] {
        padding: 0.5rem;
    }
    
    .movement-card[b-m7go5s2hjn] {
        margin: 0;
    }
    
    .movement-icon[b-m7go5s2hjn] {
        font-size: 1.5rem;
    }
}

/* _content/rbs.Portal/Components/Pages/MainPages/News.razor.rz.scp.css */
.text-header[b-rs5nh5wxze] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
}

.news-creator-container[b-rs5nh5wxze] {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
}

.news-content[b-rs5nh5wxze] {
    min-height: 100px;
}
/* _content/rbs.Portal/Components/Pages/MainPages/Shop.razor.rz.scp.css */
.main-container[b-nwrokm4r2u] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.cart-zone[b-nwrokm4r2u] {
    background-color: white;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1;
}

.products-zone[b-nwrokm4r2u] {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.products-list[b-nwrokm4r2u] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 1rem;
}
/* _content/rbs.Portal/Components/Pages/MainPages/VirtualCard.razor.rz.scp.css */
.virtual-card-container[b-f3b1oinjnh] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.qr-cards-wrapper[b-f3b1oinjnh] {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .virtual-card-container[b-f3b1oinjnh] {
        padding: 0.5rem;
        height: 100%;
    }
    
    .qr-cards-wrapper[b-f3b1oinjnh] {
        max-width: 100%;
        height: 100%;
    }
}

/* _content/rbs.Portal/Components/Pages/Passwords/ForgotPassword.razor.rz.scp.css */

[b-6fqw49etou] .forgot-password-card {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    background: white;
    animation: slideUp-b-6fqw49etou 0.5s ease-out;
}

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

[b-6fqw49etou] .forgot-password-card .rz-stack {
    width: 100%;
}

[b-6fqw49etou] .forgot-password-card .rz-icon {
    animation: bounce-b-6fqw49etou 0.6s ease-out;
}

@keyframes bounce-b-6fqw49etou {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

[b-6fqw49etou] .forgot-password-card .rz-textbox,
[b-6fqw49etou] .forgot-password-card input {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    font-size: 1rem;
}

[b-6fqw49etou] .forgot-password-card .rz-textbox:focus,
[b-6fqw49etou] .forgot-password-card input:focus {
    border-color: var(--rz-primary-500) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none;
}

[b-6fqw49etou] .forgot-password-card .rz-label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

[b-6fqw49etou] .forgot-password-card .rz-button {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[b-6fqw49etou] .forgot-password-card .rz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

[b-6fqw49etou] .forgot-password-card .rz-button:active {
    transform: translateY(0);
}

[b-6fqw49etou] .forgot-password-card .rz-alert {
    border-radius: 8px;
    padding: 1rem;
    animation: slideDown-b-6fqw49etou 0.3s ease-out;
}

@keyframes slideDown-b-6fqw49etou {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-6fqw49etou] .forgot-password-card .rz-alert-error {
    background-color: #fee;
    border-color: #fcc;
}

[b-6fqw49etou] .forgot-password-card .rz-alert-success {
    background-color: #efe;
    border-color: #cfc;
}

/* Validación */
[b-6fqw49etou] .forgot-password-card .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    [b-6fqw49etou] .forgot-password-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    [b-6fqw49etou] .forgot-password-card .rz-icon {
        font-size: 2.5rem !important;
    }

    [b-6fqw49etou] .forgot-password-card .rz-heading {
        font-size: 1.5rem !important;
    }
}
/* _content/rbs.Portal/Components/Pages/Passwords/ResetPassword.razor.rz.scp.css */
[b-j868f3moo8] .reset-password-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica',
        'Arial', sans-serif;
}

[b-j868f3moo8] .reset-password-card {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    background: white;
    animation: slideUp-b-j868f3moo8 0.5s ease-out;
}

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

[b-j868f3moo8] .reset-password-card .rz-stack {
    width: 100%;
}

[b-j868f3moo8] .reset-password-card .rz-icon {
    animation: bounce-b-j868f3moo8 0.6s ease-out;
}

@keyframes bounce-b-j868f3moo8 {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

[b-j868f3moo8] .reset-password-card .rz-textbox,
[b-j868f3moo8] .reset-password-card .rz-password,
[b-j868f3moo8] .reset-password-card input {
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    font-size: 1rem;
}

[b-j868f3moo8] .reset-password-card .rz-textbox:focus,
[b-j868f3moo8] .reset-password-card .rz-password:focus,
[b-j868f3moo8] .reset-password-card input:focus {
    border-color: var(--rz-primary-500) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    outline: none;
}

[b-j868f3moo8] .reset-password-card .rz-label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

[b-j868f3moo8] .reset-password-card .rz-button {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[b-j868f3moo8] .reset-password-card .rz-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

[b-j868f3moo8] .reset-password-card .rz-button:active {
    transform: translateY(0);
}

[b-j868f3moo8] .reset-password-card .rz-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

[b-j868f3moo8] .reset-password-card .rz-alert {
    border-radius: 8px;
    padding: 1rem;
    animation: slideDown-b-j868f3moo8 0.3s ease-out;
}

@keyframes slideDown-b-j868f3moo8 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-j868f3moo8] .reset-password-card .rz-alert-error {
    background-color: #fee;
    border-color: #fcc;
}

[b-j868f3moo8] .reset-password-card .rz-alert-success {
    background-color: #efe;
    border-color: #cfc;
}

/* Validación */
[b-j868f3moo8] .reset-password-card .validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Responsive */
@media (max-width: 480px) {
    [b-j868f3moo8] .reset-password-card {
        padding: 1.5rem;
        max-width: 100%;
    }

    [b-j868f3moo8] .reset-password-card .rz-icon {
        font-size: 2.5rem !important;
    }

    [b-j868f3moo8] .reset-password-card .rz-heading {
        font-size: 1.5rem !important;
    }
}
