@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.boiwgh0w5b.bundle.scp.css';

/* /Components/Layout/ClienteLayout.razor.rz.scp.css */
/* ========================================
   Portal de Clientes - Estilos
   ======================================== */

/* Layout Principal */
.cliente-portal[b-dtnp0rolpe] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f5f7fa;
}

/* Header */
.cliente-header[b-dtnp0rolpe] {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content[b-dtnp0rolpe] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand[b-dtnp0rolpe] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo[b-dtnp0rolpe] {
    height: 40px;
    width: auto;
}

.brand-name[b-dtnp0rolpe] {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.header-actions[b-dtnp0rolpe] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info[b-dtnp0rolpe] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.user-name[b-dtnp0rolpe] {
    font-weight: 500;
}

.btn-logout[b-dtnp0rolpe] {
    background: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-logout:hover[b-dtnp0rolpe] {
    background: #e74c3c;
}

/* Main Content */
.cliente-main[b-dtnp0rolpe] {
    flex: 1;
    padding: 2rem;
}

.cliente-container[b-dtnp0rolpe] {
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation Menu */
.portal-nav[b-dtnp0rolpe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link[b-dtnp0rolpe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-link:hover[b-dtnp0rolpe] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-link.active[b-dtnp0rolpe] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-icon[b-dtnp0rolpe] {
    font-size: 1.1rem;
}

/* Footer */
.cliente-footer[b-dtnp0rolpe] {
    background: #2c3e50;
    color: #bdc3c7;
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
}

/* ========================================
   Login Page Styles
   ======================================== */
.login-container[b-dtnp0rolpe] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.login-card[b-dtnp0rolpe] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
}

.login-header[b-dtnp0rolpe] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1[b-dtnp0rolpe] {
    color: #2c3e50;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.login-header p[b-dtnp0rolpe] {
    color: #7f8c8d;
}

.form-group[b-dtnp0rolpe] {
    margin-bottom: 1.5rem;
}

.form-group label[b-dtnp0rolpe] {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input[b-dtnp0rolpe] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus[b-dtnp0rolpe] {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.otp-input[b-dtnp0rolpe] {
    text-align: center;
    font-size: 1.5rem !important;
    letter-spacing: 0.5rem;
    font-weight: 600;
}

.btn-primary[b-dtnp0rolpe] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover:not(:disabled)[b-dtnp0rolpe] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-primary:disabled[b-dtnp0rolpe] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-dtnp0rolpe] {
    width: 100%;
    padding: 0.875rem;
    background: #ecf0f1;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.2s;
}

.btn-secondary:hover[b-dtnp0rolpe] {
    background: #dfe6e9;
}

.alert[b-dtnp0rolpe] {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-danger[b-dtnp0rolpe] {
    background: #ffeaea;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

.alert-success[b-dtnp0rolpe] {
    background: #e8f8f5;
    color: #1e8449;
    border: 1px solid #a9dfbf;
}

.alert-info[b-dtnp0rolpe] {
    background: #e8f4f8;
    color: #2980b9;
    border: 1px solid #aed6f1;
}

/* ========================================
   Pedido Page Styles
   ======================================== */
.pedido-page[b-dtnp0rolpe] {
    animation: fadeIn-b-dtnp0rolpe 0.3s ease-out;
}

@keyframes fadeIn-b-dtnp0rolpe {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-header[b-dtnp0rolpe] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-header h1[b-dtnp0rolpe] {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
}

.lista-precio-info[b-dtnp0rolpe] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
    border-radius: 8px;
    margin-top: 1rem;
}

.lista-precio-info .info-item[b-dtnp0rolpe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lista-precio-info .label[b-dtnp0rolpe] {
    color: #6c757d;
    font-size: 0.875rem;
}

.lista-precio-info .value[b-dtnp0rolpe] {
    font-weight: 600;
    color: #2c3e50;
}

/* Materia Prima Groups */
.materia-group[b-dtnp0rolpe] {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.materia-header[b-dtnp0rolpe] {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.materia-header h3[b-dtnp0rolpe] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.precio-kg[b-dtnp0rolpe] {
    background: rgba(255,255,255,0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.productos-grid[b-dtnp0rolpe] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.producto-card[b-dtnp0rolpe] {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.producto-card:hover[b-dtnp0rolpe] {
    border-color: #3498db;
}

.producto-card.has-quantity[b-dtnp0rolpe] {
    border-color: #27ae60;
    background: #f0fff4;
}

.producto-nombre[b-dtnp0rolpe] {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.producto-precio[b-dtnp0rolpe] {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cantidad-input[b-dtnp0rolpe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cantidad-input label[b-dtnp0rolpe] {
    color: #6c757d;
    font-size: 0.875rem;
}

.cantidad-input input[b-dtnp0rolpe] {
    width: 100px;
    padding: 0.5rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.cantidad-input input:focus[b-dtnp0rolpe] {
    outline: none;
    border-color: #3498db;
}

.cantidad-input .unit[b-dtnp0rolpe] {
    color: #6c757d;
}

.subtotal[b-dtnp0rolpe] {
    text-align: right;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

/* Summary Card */
.summary-card[b-dtnp0rolpe] {
    position: sticky;
    bottom: 1rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.summary-totals[b-dtnp0rolpe] {
    display: flex;
    gap: 2rem;
}

.summary-item[b-dtnp0rolpe] {
    text-align: center;
}

.summary-item .label[b-dtnp0rolpe] {
    font-size: 0.875rem;
    color: #6c757d;
}

.summary-item .value[b-dtnp0rolpe] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.btn-enviar[b-dtnp0rolpe] {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-enviar:hover:not(:disabled)[b-dtnp0rolpe] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.btn-enviar:disabled[b-dtnp0rolpe] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Complex Products Section */
.otros-productos[b-dtnp0rolpe] {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.otros-header[b-dtnp0rolpe] {
    background: #6c757d;
    color: white;
    padding: 1rem 1.5rem;
}

.otros-header h3[b-dtnp0rolpe] {
    margin: 0;
    font-size: 1.1rem;
}

/* Loading State */
.loading-container[b-dtnp0rolpe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: #6c757d;
}

.spinner[b-dtnp0rolpe] {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin-b-dtnp0rolpe 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-dtnp0rolpe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content[b-dtnp0rolpe] {
        padding: 1rem;
    }

    .brand-name[b-dtnp0rolpe] {
        font-size: 1.2rem;
    }

    .cliente-main[b-dtnp0rolpe] {
        padding: 1rem;
    }

    .page-header[b-dtnp0rolpe] {
        padding: 1rem;
    }

    .productos-grid[b-dtnp0rolpe] {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .summary-card[b-dtnp0rolpe] {
        flex-direction: column;
        text-align: center;
    }

    .summary-totals[b-dtnp0rolpe] {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-enviar[b-dtnp0rolpe] {
        width: 100%;
    }
}

/* Dirección selector */
.direccion-selector[b-dtnp0rolpe] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.direccion-selector h3[b-dtnp0rolpe] {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.direccion-selector select[b-dtnp0rolpe] {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.direccion-selector select:focus[b-dtnp0rolpe] {
    outline: none;
    border-color: #3498db;
}

.fecha-entrega[b-dtnp0rolpe] {
    margin-top: 1rem;
}

.fecha-entrega input[b-dtnp0rolpe] {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.fecha-entrega input:focus[b-dtnp0rolpe] {
    outline: none;
    border-color: #3498db;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-pui3qmsk44] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-pui3qmsk44] {
    flex: 1;
}

.sidebar[b-pui3qmsk44] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-pui3qmsk44] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-pui3qmsk44]  a, .top-row[b-pui3qmsk44]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-pui3qmsk44]  a:hover, .top-row[b-pui3qmsk44]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-pui3qmsk44]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-pui3qmsk44] {
        justify-content: space-between;
    }

    .top-row[b-pui3qmsk44]  a, .top-row[b-pui3qmsk44]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-pui3qmsk44] {
        flex-direction: row;
    }

    .sidebar[b-pui3qmsk44] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        transition: width 0.25s ease;
    }

    .top-row[b-pui3qmsk44] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-pui3qmsk44]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-pui3qmsk44], article[b-pui3qmsk44] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-pui3qmsk44] {
    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-pui3qmsk44] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-cfr3pjxbop] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-cfr3pjxbop] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-cfr3pjxbop] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-cfr3pjxbop] {
    font-size: 1.1rem;
}

.bi[b-cfr3pjxbop] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-cart3-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-cart3' viewBox='0 0 16 16'%3E%3Cpath d='M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .49.598l-1 5a.5.5 0 0 1-.465.401l-9.397.472L4.415 11H13a.5.5 0 0 1 0 1H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM3.102 4l.84 4.479 9.144-.459L13.89 4H3.102zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
}

.bi-cart-plus-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-cart-plus' viewBox='0 0 16 16'%3E%3Cpath d='M9 5.5a.5.5 0 0 0-1 0V7H6.5a.5.5 0 0 0 0 1H8v1.5a.5.5 0 0 0 1 0V8h1.5a.5.5 0 0 0 0-1H9V5.5z'/%3E%3Cpath d='M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1H.5zm3.915 10L3.102 4h10.796l-1.313 7h-8.17zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
}

.bi-box-arrow-in-down-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-box-arrow-in-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M3.5 6a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 1 0-1h2A1.5 1.5 0 0 1 14 6.5v8a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-8A1.5 1.5 0 0 1 3.5 5h2a.5.5 0 0 1 0 1h-2z'/%3E%3Cpath fill-rule='evenodd' d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708l3 3z'/%3E%3C/svg%3E");
}

.bi-boxes-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-boxes' viewBox='0 0 16 16'%3E%3Cpath d='M7.752.066a.5.5 0 0 1 .496 0l3.75 2.143a.5.5 0 0 1 .252.434v3.995l3.498 2A.5.5 0 0 1 16 9.07v4.286a.5.5 0 0 1-.252.434l-3.75 2.143a.5.5 0 0 1-.496 0l-3.502-2-3.502 2.001a.5.5 0 0 1-.496 0l-3.75-2.143A.5.5 0 0 1 0 13.357V9.071a.5.5 0 0 1 .252-.434L3.75 6.638V2.643a.5.5 0 0 1 .252-.434L7.752.066ZM4.25 7.504 1.508 9.071l2.742 1.567 2.742-1.567L4.25 7.504ZM7.5 9.933l-2.75 1.571v3.134l2.75-1.571V9.933Zm1 3.134 2.75 1.571v-3.134L8.5 9.933v3.134Zm.508-3.996 2.742 1.567 2.742-1.567-2.742-1.567-2.742 1.567Zm2.242-2.433V3.504L8.5 5.076V8.21l2.75-1.572ZM7.5 8.21V5.076L4.75 3.504v3.134L7.5 8.21ZM5.258 2.643 8 4.21l2.742-1.567L8 1.076 5.258 2.643ZM15 9.933l-2.75 1.571v3.134L15 13.067V9.933ZM3.75 14.638v-3.134L1 9.933v3.134l2.75 1.571Z'/%3E%3C/svg%3E");
}

.bi-box-seam-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-box-seam' viewBox='0 0 16 16'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5l2.404.961L10.404 2l-2.218-.887zm3.564 1.426L5.596 5 8 5.961 14.154 3.5l-2.404-.961zm3.25 1.7-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.629 13.09a1 1 0 0 1-.629-.928V3.5a.5.5 0 0 1 .314-.464L7.443.184z'/%3E%3C/svg%3E");
}

.bi-box-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-box' viewBox='0 0 16 16'%3E%3Cpath d='M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5 8 5.961 14.154 3.5 8.186 1.113zM15 4.239l-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V6.838L1 4.239v7.923l6.5 2.6zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.129 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874a.5.5 0 0 1-.372 0L.629 13.09a1 1 0 0 1-.629-.928V3.5a.5.5 0 0 1 .314-.464L7.443.184z'/%3E%3C/svg%3E");
}

.bi-gear-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E");
}

.bi-truck-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-truck' viewBox='0 0 16 16'%3E%3Cpath d='M0 3.5A1.5 1.5 0 0 1 1.5 2h9A1.5 1.5 0 0 1 12 3.5V5h1.02a1.5 1.5 0 0 1 1.17.563l1.481 1.85a1.5 1.5 0 0 1 .329.938V10.5a1.5 1.5 0 0 1-1.5 1.5H14a2 2 0 1 1-4 0H5a2 2 0 1 1-3.998-.085A1.5 1.5 0 0 1 0 10.5v-7zm1.294 7.456A1.999 1.999 0 0 1 4.732 11h5.536a2.01 2.01 0 0 1 .732-.732V3.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5v7a.5.5 0 0 0 .294.456zM12 10a2 2 0 0 1 1.732 1h.768a.5.5 0 0 0 .5-.5V8.35a.5.5 0 0 0-.11-.312l-1.48-1.85A.5.5 0 0 0 13.02 6H12v4zm-9 1a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm9 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
}

.bi-box-arrow-up-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-box-arrow-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M3.5 6a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 1 0-1h2A1.5 1.5 0 0 1 14 6.5v8a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 14.5v-8A1.5 1.5 0 0 1 3.5 5h2a.5.5 0 0 1 0 1h-2z'/%3E%3Cpath fill-rule='evenodd' d='M7.646.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 1.707V10.5a.5.5 0 0 1-1 0V1.707L5.354 3.854a.5.5 0 1 1-.708-.708l3-3z'/%3E%3C/svg%3E");
}

.bi-check2-circle-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-check2-circle' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8a5.5 5.5 0 0 1 8.25-4.764.5.5 0 0 0 .5-.866A6.5 6.5 0 1 0 14.5 8a.5.5 0 0 0-1 0 5.5 5.5 0 1 1-11 0z'/%3E%3Cpath d='M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l7-7z'/%3E%3C/svg%3E");
}

.bi-people-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-people' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8Zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002A.274.274 0 0 1 15 13H7.022ZM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816ZM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z'/%3E%3C/svg%3E");
}

.bi-tags-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-tags' viewBox='0 0 16 16'%3E%3Cpath d='M3 2v4.586l7 7L14.586 9l-7-7H3zM2 2a1 1 0 0 1 1-1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 2 6.586V2z'/%3E%3Cpath d='M5.5 5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zm0 1a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM1 7.086a1 1 0 0 0 .293.707L8.75 15.25l-.043.043a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 0 7.586V3a1 1 0 0 1 1-1v5.086z'/%3E%3C/svg%3E");
}

.bi-arrow-repeat-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-repeat' viewBox='0 0 16 16'%3E%3Cpath d='M11.534 7h3.932a.25.25 0 0 1 .192.41l-1.966 2.36a.25.25 0 0 1-.384 0l-1.966-2.36a.25.25 0 0 1 .192-.41zm-11 2h3.932a.25.25 0 0 0 .192-.41L2.692 6.23a.25.25 0 0 0-.384 0L.342 8.59A.25.25 0 0 0 .534 9z'/%3E%3Cpath fill-rule='evenodd' d='M8 3c-1.552 0-2.94.707-3.857 1.818a.5.5 0 1 1-.771-.636A6.002 6.002 0 0 1 13.917 7H12.9A5.002 5.002 0 0 0 8 3zM3.1 9a5.002 5.002 0 0 0 8.757 2.182.5.5 0 1 1 .771.636A6.002 6.002 0 0 1 2.083 9H3.1z'/%3E%3C/svg%3E");
}

.bi-calendar-event-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-event' viewBox='0 0 16 16'%3E%3Cpath d='M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
}

.bi-gear-fill-nav-menu[b-cfr3pjxbop] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.nav-section-header[b-cfr3pjxbop] {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 1rem 1rem 0.5rem 1rem;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.nav-section-header:first-of-type[b-cfr3pjxbop] {
    margin-top: 0;
}

.nav-item[b-cfr3pjxbop] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-cfr3pjxbop] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-cfr3pjxbop] {
        padding-bottom: 1rem;
    }

    .nav-section .nav-item:first-of-type[b-cfr3pjxbop] {
        padding-top: 0;
    }

.nav-separator[b-cfr3pjxbop] {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1rem 1rem 0.5rem 1rem;
}

    .nav-item[b-cfr3pjxbop]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-cfr3pjxbop]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-cfr3pjxbop]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-cfr3pjxbop] {
    display: none;
}

.sidebar-toggle-container[b-cfr3pjxbop] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-cfr3pjxbop] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-cfr3pjxbop] {
        display: none;
    }

    .nav-scrollable[b-cfr3pjxbop] {
        /* Never collapse the sidebar for wide screens */
        display: flex;
        flex-direction: column;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }

    .nav-scrollable > nav[b-cfr3pjxbop] {
        flex: 1;
    }

    .sidebar-toggle-container[b-cfr3pjxbop] {
        display: flex;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.5rem;
    }

    .sidebar-toggle-btn[b-cfr3pjxbop] {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0.75rem;
        background: none;
        border: none;
        border-radius: 4px;
        color: #d7d7d7;
        cursor: pointer;
        font-size: 0.85rem;
        transition: background-color 0.15s;
    }

    .sidebar-toggle-btn:hover[b-cfr3pjxbop] {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
}
/* /Components/Pages/Portal/DetallePedido.razor.rz.scp.css */
/* Detalle Pedido Page Styles */
.detalle-page[b-6ylqspsfzb] {
    max-width: 1000px;
    margin: 0 auto;
}

.page-header[b-6ylqspsfzb] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ecf0f1;
}

.header-left[b-6ylqspsfzb] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-back[b-6ylqspsfzb] {
    color: #5d9cec;
    text-decoration: none;
    font-weight: 500;
}

.btn-back:hover[b-6ylqspsfzb] {
    text-decoration: underline;
}

.page-header h1[b-6ylqspsfzb] {
    color: #2c3e50;
    font-size: 1.75rem;
    margin: 0;
    display: inline-block;
    margin-right: 1rem;
}

.header-actions[b-6ylqspsfzb] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info[b-6ylqspsfzb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2c3e50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-logout[b-6ylqspsfzb] {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-logout:hover[b-6ylqspsfzb] {
    background: #c0392b;
}

/* Badges */
.badge[b-6ylqspsfzb] {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
}

.badge-recibido[b-6ylqspsfzb] {
    background: #e8f4fd;
    color: #3498db;
}

.badge-proceso[b-6ylqspsfzb] {
    background: #fff3e0;
    color: #f39c12;
}

.badge-enviado[b-6ylqspsfzb] {
    background: #e8f5e9;
    color: #27ae60;
}

.badge-entregado[b-6ylqspsfzb] {
    background: #e0f2f1;
    color: #00897b;
}

.badge-cancelado[b-6ylqspsfzb] {
    background: #ffebee;
    color: #e74c3c;
}

.badge-default[b-6ylqspsfzb] {
    background: #ecf0f1;
    color: #7f8c8d;
}

/* Info Grid */
.info-grid[b-6ylqspsfzb] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card[b-6ylqspsfzb] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card.full-width[b-6ylqspsfzb] {
    grid-column: 1 / -1;
}

.info-card h3[b-6ylqspsfzb] {
    color: #2c3e50;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}

.info-row[b-6ylqspsfzb] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.info-row:last-child[b-6ylqspsfzb] {
    border-bottom: none;
}

.info-row .label[b-6ylqspsfzb] {
    color: #7f8c8d;
}

.info-row .value[b-6ylqspsfzb] {
    font-weight: 600;
    color: #2c3e50;
}

.address[b-6ylqspsfzb] {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
}

/* Timeline */
.timeline-section[b-6ylqspsfzb] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.timeline-section h2[b-6ylqspsfzb] {
    color: #2c3e50;
    font-size: 1.25rem;
    margin: 0 0 1.5rem 0;
}

.timeline[b-6ylqspsfzb] {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline[b-6ylqspsfzb]::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: #ecf0f1;
    z-index: 0;
}

.timeline-item[b-6ylqspsfzb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.timeline-marker[b-6ylqspsfzb] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #ecf0f1;
    margin-bottom: 0.75rem;
}

.timeline-item.completed .timeline-marker[b-6ylqspsfzb] {
    background: #27ae60;
}

.timeline-item.current .timeline-marker[b-6ylqspsfzb] {
    background: #5d9cec;
    animation: pulse-b-6ylqspsfzb 2s infinite;
}

.timeline-item.pending .timeline-marker[b-6ylqspsfzb] {
    background: #ecf0f1;
    opacity: 0.6;
}

.timeline-item.cancelled .timeline-marker[b-6ylqspsfzb] {
    background: #e74c3c;
}

@keyframes pulse-b-6ylqspsfzb {
    0%, 100% { box-shadow: 0 0 0 0 rgba(93, 156, 236, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(93, 156, 236, 0); }
}

.timeline-content[b-6ylqspsfzb] {
    text-align: center;
}

.timeline-content strong[b-6ylqspsfzb] {
    display: block;
    color: #2c3e50;
    font-size: 0.875rem;
}

.timeline-content p[b-6ylqspsfzb] {
    color: #7f8c8d;
    font-size: 0.75rem;
    margin: 0.25rem 0 0 0;
}

.timeline-item.pending .timeline-content[b-6ylqspsfzb] {
    opacity: 0.5;
}

/* Tracking Section */
.tracking-section[b-6ylqspsfzb] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tracking-section h2[b-6ylqspsfzb] {
    color: #2c3e50;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
}

.tracking-link[b-6ylqspsfzb] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.tracking-link p[b-6ylqspsfzb] {
    margin: 0;
    color: #7f8c8d;
}

.btn-track[b-6ylqspsfzb] {
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.btn-track:hover[b-6ylqspsfzb] {
    background: #219a52;
}

.deliveries-list[b-6ylqspsfzb] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-item[b-6ylqspsfzb] {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.delivery-icon[b-6ylqspsfzb] {
    font-size: 1.5rem;
}

.delivery-info strong[b-6ylqspsfzb] {
    color: #2c3e50;
}

.delivery-info p[b-6ylqspsfzb] {
    color: #7f8c8d;
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

/* Products Section */
.products-section[b-6ylqspsfzb] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.products-section h2[b-6ylqspsfzb] {
    color: #2c3e50;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
}

.products-table[b-6ylqspsfzb] {
    width: 100%;
    border-collapse: collapse;
}

.products-table th[b-6ylqspsfzb] {
    text-align: left;
    padding: 0.75rem;
    color: #7f8c8d;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: 2px solid #ecf0f1;
}

.products-table td[b-6ylqspsfzb] {
    padding: 0.75rem;
    border-bottom: 1px solid #ecf0f1;
}

.products-table tbody tr:last-child td[b-6ylqspsfzb] {
    border-bottom: none;
}

.products-table tfoot tr[b-6ylqspsfzb] {
    background: #f8f9fa;
}

.products-table .total-label[b-6ylqspsfzb] {
    text-align: right;
    font-weight: 600;
    color: #2c3e50;
}

.products-table .total-value[b-6ylqspsfzb] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Centro de Negocio Badge */
.centro-badge[b-6ylqspsfzb] {
    display: inline-block;
    background: #5d9cec;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.centro-na[b-6ylqspsfzb] {
    color: #9ca3af;
}

/* Actions Section */
.actions-section[b-6ylqspsfzb] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.btn-cancel[b-6ylqspsfzb] {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-cancel:hover[b-6ylqspsfzb] {
    background: #c0392b;
}

.cancel-confirm[b-6ylqspsfzb] {
    padding: 1rem;
    background: #fff5f5;
    border-radius: 8px;
    border: 1px solid #fed7d7;
}

.cancel-confirm p[b-6ylqspsfzb] {
    color: #c53030;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.confirm-buttons[b-6ylqspsfzb] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cancel-yes[b-6ylqspsfzb] {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-cancel-yes:hover[b-6ylqspsfzb] {
    background: #c0392b;
}

.btn-cancel-no[b-6ylqspsfzb] {
    background: #ecf0f1;
    color: #2c3e50;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-cancel-no:hover[b-6ylqspsfzb] {
    background: #d5dbdb;
}

/* Cancelled Notice */
.cancelled-notice[b-6ylqspsfzb] {
    background: #ffebee;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #c53030;
}

.cancelled-notice span[b-6ylqspsfzb] {
    font-size: 2rem;
}

.cancelled-notice p[b-6ylqspsfzb] {
    margin: 0;
    font-weight: 500;
}

/* Loading */
.loading-container[b-6ylqspsfzb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.spinner[b-6ylqspsfzb] {
    width: 40px;
    height: 40px;
    border: 3px solid #ecf0f1;
    border-top-color: #5d9cec;
    border-radius: 50%;
    animation: spin-b-6ylqspsfzb 1s linear infinite;
}

@keyframes spin-b-6ylqspsfzb {
    to { transform: rotate(360deg); }
}

/* Alert */
.alert[b-6ylqspsfzb] {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.alert-danger[b-6ylqspsfzb] {
    background: #ffebee;
    color: #c53030;
}

.alert-warning[b-6ylqspsfzb] {
    background: #fff8e1;
    color: #f57c00;
}

.btn-secondary[b-6ylqspsfzb] {
    background: #7f8c8d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.btn-secondary:hover[b-6ylqspsfzb] {
    background: #5d6d7e;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-6ylqspsfzb] {
        flex-direction: column;
        gap: 1rem;
    }

    .header-actions[b-6ylqspsfzb] {
        width: 100%;
        justify-content: space-between;
    }

    .info-grid[b-6ylqspsfzb] {
        grid-template-columns: 1fr;
    }

    .timeline[b-6ylqspsfzb] {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline[b-6ylqspsfzb]::before {
        display: none;
    }

    .timeline-item[b-6ylqspsfzb] {
        flex-direction: row;
        gap: 1rem;
    }

    .timeline-content[b-6ylqspsfzb] {
        text-align: left;
    }
}
/* /Components/Pages/Portal/Index.razor.rz.scp.css */
/* Dashboard Page Styles */
.dashboard-page[b-taa4r9sa3z] {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header[b-taa4r9sa3z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ecf0f1;
}

.dashboard-header h1[b-taa4r9sa3z] {
    color: #2c3e50;
    font-size: 1.75rem;
    margin: 0;
}

.dashboard-header .subtitle[b-taa4r9sa3z] {
    color: #7f8c8d;
    margin: 0.25rem 0 0 0;
}

.btn-logout[b-taa4r9sa3z] {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-logout:hover[b-taa4r9sa3z] {
    background: #c0392b;
}

/* Stats Grid */
.stats-grid[b-taa4r9sa3z] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-taa4r9sa3z] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-taa4r9sa3z] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat-icon[b-taa4r9sa3z] {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.recibido[b-taa4r9sa3z] {
    background: #e8f4fd;
}

.stat-icon.proceso[b-taa4r9sa3z] {
    background: #fff3e0;
}

.stat-icon.enviado[b-taa4r9sa3z] {
    background: #e8f5e9;
}

.stat-icon.entregado[b-taa4r9sa3z] {
    background: #e0f2f1;
}

.stat-info[b-taa4r9sa3z] {
    display: flex;
    flex-direction: column;
}

.stat-value[b-taa4r9sa3z] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
}

.stat-label[b-taa4r9sa3z] {
    color: #7f8c8d;
    font-size: 0.875rem;
}

/* Monthly Total */
.monthly-total[b-taa4r9sa3z] {
    background: linear-gradient(135deg, #5d9cec 0%, #4a89dc 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.monthly-icon[b-taa4r9sa3z] {
    font-size: 2.5rem;
}

.monthly-info[b-taa4r9sa3z] {
    display: flex;
    flex-direction: column;
}

.monthly-label[b-taa4r9sa3z] {
    font-size: 0.875rem;
    opacity: 0.9;
}

.monthly-value[b-taa4r9sa3z] {
    font-size: 2rem;
    font-weight: 700;
}

/* Recent Orders */
.recent-orders[b-taa4r9sa3z] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-header[b-taa4r9sa3z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h2[b-taa4r9sa3z] {
    color: #2c3e50;
    font-size: 1.25rem;
    margin: 0;
}

.btn-link[b-taa4r9sa3z] {
    color: #5d9cec;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover[b-taa4r9sa3z] {
    text-decoration: underline;
}

.orders-table[b-taa4r9sa3z] {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th[b-taa4r9sa3z] {
    text-align: left;
    padding: 0.75rem;
    color: #7f8c8d;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: 2px solid #ecf0f1;
}

.orders-table td[b-taa4r9sa3z] {
    padding: 0.75rem;
    border-bottom: 1px solid #ecf0f1;
}

.orders-table tr:last-child td[b-taa4r9sa3z] {
    border-bottom: none;
}

.badge[b-taa4r9sa3z] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-recibido[b-taa4r9sa3z] {
    background: #e8f4fd;
    color: #3498db;
}

.badge-proceso[b-taa4r9sa3z] {
    background: #fff3e0;
    color: #f39c12;
}

.badge-enviado[b-taa4r9sa3z] {
    background: #e8f5e9;
    color: #27ae60;
}

.badge-entregado[b-taa4r9sa3z] {
    background: #e0f2f1;
    color: #00897b;
}

.badge-cancelado[b-taa4r9sa3z] {
    background: #ffebee;
    color: #e74c3c;
}

.badge-default[b-taa4r9sa3z] {
    background: #ecf0f1;
    color: #7f8c8d;
}

.btn-view[b-taa4r9sa3z] {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.btn-view:hover[b-taa4r9sa3z] {
    background: #d5dbdb;
}

/* Empty State */
.empty-state[b-taa4r9sa3z] {
    text-align: center;
    padding: 3rem;
}

.empty-icon[b-taa4r9sa3z] {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state p[b-taa4r9sa3z] {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.btn-primary[b-taa4r9sa3z] {
    background: #5d9cec;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.btn-primary:hover[b-taa4r9sa3z] {
    background: #4a89dc;
}

/* Quick Actions */
.quick-actions[b-taa4r9sa3z] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-card[b-taa4r9sa3z] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.action-card:hover[b-taa4r9sa3z] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.action-icon[b-taa4r9sa3z] {
    font-size: 2rem;
}

.action-text[b-taa4r9sa3z] {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Loading */
.loading-container[b-taa4r9sa3z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.spinner[b-taa4r9sa3z] {
    width: 40px;
    height: 40px;
    border: 3px solid #ecf0f1;
    border-top-color: #5d9cec;
    border-radius: 50%;
    animation: spin-b-taa4r9sa3z 1s linear infinite;
}

@keyframes spin-b-taa4r9sa3z {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid[b-taa4r9sa3z] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid[b-taa4r9sa3z] {
        grid-template-columns: 1fr;
    }

    .quick-actions[b-taa4r9sa3z] {
        grid-template-columns: 1fr;
    }

    .dashboard-header[b-taa4r9sa3z] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .monthly-total[b-taa4r9sa3z] {
        flex-direction: column;
        text-align: center;
    }
}
/* /Components/Pages/Portal/NuevoPedido.razor.rz.scp.css */
/* ===== GRUPO DE MATERIA PRIMA ===== */
.grupo-materia-prima[b-ekj3q9uvge] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.grupo-container[b-ekj3q9uvge] {
    display: flex;
    gap: 0;
}

/* Imagen de materia prima */
.grupo-imagen[b-ekj3q9uvge] {
    width: 100px;
    min-width: 100px;
    max-height: 100px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e9ecef;
    overflow: hidden;
}

.grupo-imagen img[b-ekj3q9uvge] {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.imagen-placeholder[b-ekj3q9uvge] {
    width: 80px;
    height: 80px;
    background: #2c3e50;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* Contenido del grupo */
.grupo-contenido[b-ekj3q9uvge] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header del grupo - Materia Prima */
.grupo-header[b-ekj3q9uvge] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #5d9cec;
    color: white;
}

.materia-nombre[b-ekj3q9uvge] {
    font-size: 1.1rem;
    font-weight: 600;
}

.materia-precio[b-ekj3q9uvge] {
    font-size: 1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Lista de productos */
.productos-lista[b-ekj3q9uvge] {
    padding: 0;
}

.producto-row[b-ekj3q9uvge] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    gap: 1rem;
    transition: background-color 0.2s;
}

.producto-row:last-child[b-ekj3q9uvge] {
    border-bottom: none;
}

.producto-row:hover[b-ekj3q9uvge] {
    background-color: #f8f9fa;
}

.producto-row.has-quantity[b-ekj3q9uvge] {
    background-color: #e8f5e9;
}

.producto-row.has-quantity:hover[b-ekj3q9uvge] {
    background-color: #c8e6c9;
}

.producto-row .producto-imagen[b-ekj3q9uvge] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.producto-row .producto-nombre[b-ekj3q9uvge] {
    flex: 1;
    font-weight: 500;
    color: #2c3e50;
}

.producto-row .producto-precio-inline[b-ekj3q9uvge] {
    color: #c0392b;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 90px;
}

.producto-row .producto-cantidad[b-ekj3q9uvge] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.producto-row .producto-cantidad input[b-ekj3q9uvge] {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid #27ae60;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.producto-row .producto-cantidad input:focus[b-ekj3q9uvge] {
    outline: none;
    border-color: #1e8449;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
}

.producto-row .producto-cantidad .unidad[b-ekj3q9uvge] {
    color: #6c757d;
    font-size: 0.875rem;
}

.producto-row .producto-total[b-ekj3q9uvge] {
    min-width: 80px;
    text-align: right;
    font-weight: 600;
    color: #2c3e50;
}

/* Total del grupo */
.grupo-total[b-ekj3q9uvge] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
}

.grupo-total .total-label[b-ekj3q9uvge] {
    font-weight: 500;
    color: #6c757d;
}

.grupo-total .total-valor[b-ekj3q9uvge] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
}

/* ===== OTROS PRODUCTOS ===== */
.otros-productos[b-ekj3q9uvge] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.otros-header[b-ekj3q9uvge] {
    padding: 0.75rem 1rem;
    background: #7f8c8d;
    color: white;
}

.otros-header h3[b-ekj3q9uvge] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== RESUMEN ===== */
.summary-card[b-ekj3q9uvge] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.summary-totals[b-ekj3q9uvge] {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.summary-item[b-ekj3q9uvge] {
    text-align: center;
}

.summary-item .label[b-ekj3q9uvge] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.summary-item .value[b-ekj3q9uvge] {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-enviar[b-ekj3q9uvge] {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-enviar:hover:not(:disabled)[b-ekj3q9uvge] {
    background: #1e8449;
}

.btn-enviar:disabled[b-ekj3q9uvge] {
    background: #95a5a6;
    cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .grupo-container[b-ekj3q9uvge] {
        flex-direction: column;
    }

    .grupo-imagen[b-ekj3q9uvge] {
        width: 100%;
        min-width: 100%;
        height: 80px;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }

    .imagen-placeholder[b-ekj3q9uvge] {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .grupo-header[b-ekj3q9uvge] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .producto-row[b-ekj3q9uvge] {
        flex-wrap: wrap;
    }

    .producto-row .producto-nombre[b-ekj3q9uvge] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .producto-row .producto-cantidad[b-ekj3q9uvge] {
        flex: 1;
    }

    .producto-row .producto-total[b-ekj3q9uvge] {
        min-width: 60px;
    }

    .summary-totals[b-ekj3q9uvge] {
        gap: 1rem;
    }

    .summary-item .value[b-ekj3q9uvge] {
        font-size: 1.25rem;
    }
}

/* ===== CENTROS DE NEGOCIO TABS ===== */
.centros-negocio-tabs[b-ekj3q9uvge] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.centros-negocio-tabs .tabs-header[b-ekj3q9uvge] {
    padding: 1rem;
    background: #2c3e50;
    color: white;
}

.centros-negocio-tabs .tabs-header h3[b-ekj3q9uvge] {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.centros-negocio-tabs .tabs-hint[b-ekj3q9uvge] {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.tabs-nav[b-ekj3q9uvge] {
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn[b-ekj3q9uvge] {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover[b-ekj3q9uvge] {
    background: #e9ecef;
    color: #2c3e50;
}

.tab-btn.active[b-ekj3q9uvge] {
    background: white;
    color: #5d9cec;
    border-bottom-color: #5d9cec;
    font-weight: 600;
}

.tab-badge[b-ekj3q9uvge] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #27ae60;
    color: white;
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tab-btn.active .tab-badge[b-ekj3q9uvge] {
    background: #5d9cec;
}

/* Productos container con tabs */
.productos-container.con-tabs[b-ekj3q9uvge] {
    border: 2px solid #5d9cec;
    border-radius: 12px;
    padding: 1rem;
    background: #f8fbff;
}

.centro-info-badge[b-ekj3q9uvge] {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    color: #1565c0;
    font-size: 0.9rem;
}

.centro-info-badge strong[b-ekj3q9uvge] {
    color: #0d47a1;
}

/* Hint para seleccionar dirección */
.seleccionar-direccion-hint[b-ekj3q9uvge] {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
}

.seleccionar-direccion-hint p[b-ekj3q9uvge] {
    margin: 0;
    color: #856404;
    font-size: 1.1rem;
}

/* Responsive tabs */
@media (max-width: 768px) {
    .tabs-nav[b-ekj3q9uvge] {
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn[b-ekj3q9uvge] {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .productos-container.con-tabs[b-ekj3q9uvge] {
        padding: 0.5rem;
    }

    .centro-info-badge[b-ekj3q9uvge] {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}
/* /Components/Pages/Portal/Pedidos.razor.rz.scp.css */
/* Pedidos List Page Styles */
.pedidos-page[b-uvniqa6z9h] {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header[b-uvniqa6z9h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ecf0f1;
}

.page-header h1[b-uvniqa6z9h] {
    color: #2c3e50;
    font-size: 1.75rem;
    margin: 0;
}

.page-header .subtitle[b-uvniqa6z9h] {
    color: #7f8c8d;
    margin: 0.25rem 0 0 0;
}

.header-actions[b-uvniqa6z9h] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info[b-uvniqa6z9h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2c3e50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-logout[b-uvniqa6z9h] {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-logout:hover[b-uvniqa6z9h] {
    background: #c0392b;
}

/* Orders List */
.pedidos-list[b-uvniqa6z9h] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.orders-table[b-uvniqa6z9h] {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th[b-uvniqa6z9h] {
    text-align: left;
    padding: 1rem 0.75rem;
    color: #7f8c8d;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: 2px solid #ecf0f1;
}

.orders-table td[b-uvniqa6z9h] {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: middle;
}

.orders-table tr:last-child td[b-uvniqa6z9h] {
    border-bottom: none;
}

.orders-table tr:hover td[b-uvniqa6z9h] {
    background: #f8f9fa;
}

.badge[b-uvniqa6z9h] {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-recibido[b-uvniqa6z9h] {
    background: #e8f4fd;
    color: #3498db;
}

.badge-proceso[b-uvniqa6z9h] {
    background: #fff3e0;
    color: #f39c12;
}

.badge-enviado[b-uvniqa6z9h] {
    background: #e8f5e9;
    color: #27ae60;
}

.badge-entregado[b-uvniqa6z9h] {
    background: #e0f2f1;
    color: #00897b;
}

.badge-cancelado[b-uvniqa6z9h] {
    background: #ffebee;
    color: #e74c3c;
}

.badge-default[b-uvniqa6z9h] {
    background: #ecf0f1;
    color: #7f8c8d;
}

.btn-view[b-uvniqa6z9h] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #5d9cec;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.btn-view:hover[b-uvniqa6z9h] {
    background: #4a89dc;
}

/* Summary */
.summary[b-uvniqa6z9h] {
    margin-top: 1rem;
    text-align: right;
    color: #7f8c8d;
}

/* Empty State */
.empty-state[b-uvniqa6z9h] {
    background: white;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.empty-icon[b-uvniqa6z9h] {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state h2[b-uvniqa6z9h] {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.empty-state p[b-uvniqa6z9h] {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.btn-primary[b-uvniqa6z9h] {
    background: #5d9cec;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.btn-primary:hover[b-uvniqa6z9h] {
    background: #4a89dc;
}

/* Loading */
.loading-container[b-uvniqa6z9h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.spinner[b-uvniqa6z9h] {
    width: 40px;
    height: 40px;
    border: 3px solid #ecf0f1;
    border-top-color: #5d9cec;
    border-radius: 50%;
    animation: spin-b-uvniqa6z9h 1s linear infinite;
}

@keyframes spin-b-uvniqa6z9h {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-uvniqa6z9h] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .header-actions[b-uvniqa6z9h] {
        width: 100%;
        justify-content: space-between;
    }

    .orders-table[b-uvniqa6z9h] {
        display: block;
        overflow-x: auto;
    }
}
/* /Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-7882z672yd] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-7882z672yd] {
  color: #0077cc;
}

.btn-primary[b-7882z672yd] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-7882z672yd], .nav-pills .show > .nav-link[b-7882z672yd] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-7882z672yd] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-7882z672yd] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-7882z672yd] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-7882z672yd] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-7882z672yd] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
