/**
 * Estilos Personalizados - Panel Hotel
 * Ubicación: /wp-content/themes/hoteles-steck/assets/css/custom.css
 * CORREGIDO Y RESPONSIVO COMPLETO
 */

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --dark: #2c3e50;
    --light: #ecf0f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

/* ======================================== 
   LAYOUT PRINCIPAL DEL PANEL
   ======================================== */

.panel-wrapper {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
}

/* ======================================== 
   SIDEBAR
   ======================================== */

.panel-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
    left: 0;
    top: 0;
}

.sidebar-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header img {
    max-width: 80px;
    margin-bottom: 15px;
}

.sidebar-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.sidebar-user {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 35px;
}

.sidebar-user h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: white;
}

.sidebar-user p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-menu {
    flex: 1;
    padding: 20px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.menu-item.active {
    background: rgba(102, 126, 234, 0.2);
    color: white;
    border-left-color: var(--primary);
}

.menu-item i {
    margin-right: 15px;
    font-size: 20px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-logout {
    width: 100%;
    padding: 12px;
    background: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-logout:hover {
    background: var(--danger);
}

/* ======================================== 
   CONTENIDO PRINCIPAL
   ======================================== */

.panel-content {
    flex: 1;
    margin-left: 280px;
    padding: 0;
    background: #f5f7fa;
}

.panel-header {
    background: white;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.header-left h1 {
    font-size: 26px;
    color: var(--dark);
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-fingerprint {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-fingerprint:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.header-date {
    font-size: 14px;
    color: #7f8c8d;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ======================================== 
   SECCIONES
   ======================================== */

.panel-section {
    display: none;
    padding: 30px;
    animation: fadeIn 0.4s ease-out;
}

.panel-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ======================================== 
   SELECTOR DE SEMANA
   ======================================== */

.week-selector {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.week-selector label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.select-custom {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-custom:focus {
    outline: none;
    border-color: var(--primary);
}

/* ======================================== 
   GRID DE UNIDADES
   ======================================== */

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.unidad-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--info);
    min-height: 180px;
}

.unidad-card.ocupada {
    border-top-color: var(--danger);
}

.unidad-card.vacia {
    border-top-color: var(--success);
}

.unidad-card.apartada {
    border-top-color: var(--warning);
}

.unidad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.unidad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.unidad-numero {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.unidad-estado {
    display: flex;
    align-items: center;
    gap: 8px;
}

.estado-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.estado-badge.ocupada {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.estado-badge.vacia {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
}

.estado-badge.apartada {
    background: rgba(243, 156, 18, 0.1);
    color: var(--warning);
}

.unidad-config {
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.unidad-config:hover {
    background: var(--primary);
    color: white;
}

.unidad-info {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.unidad-info strong {
    color: var(--dark);
}

.unidad-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-small {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-small {
    background: var(--primary);
    color: white;
}

.btn-primary-small:hover {
    background: var(--secondary);
}

/* ======================================== 
   MODALES
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
}

.modal-small {
    max-width: 500px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
    color: var(--dark);
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-body {
    padding: 25px;
}

/* ======================================== 
   FORMULARIOS
   ======================================== */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-primary,
.btn-secondary,
.btn-danger {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #c0392b;
}

/* Botón borrar huésped */
.btn-delete-guest {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.btn-delete-guest:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-delete-guest:active {
    transform: translateY(0);
}

/* Confirmación de borrado */
.delete-confirmation {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid var(--danger);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.delete-confirmation h4 {
    color: var(--danger);
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delete-confirmation p {
    color: #7f8c8d;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.delete-confirmation-buttons {
    display: flex;
    gap: 10px;
}

.btn-confirm-delete {
    flex: 1;
    padding: 10px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn-cancel-delete {
    flex: 1;
    padding: 10px;
    background: #95a5a6;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* ======================================== 
   DIAS GRID
   ======================================== */

.dias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.dia-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dia-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dia-card h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
}

.dia-card-info {
    font-size: 13px;
    color: #7f8c8d;
    margin: 5px 0;
}

.dia-card-info span {
    font-weight: 600;
    color: var(--dark);
}

/* ======================================== 
   TOTAL SUMMARY
   ======================================== */

.total-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.total-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.total-item.paga {
    background: rgba(52, 152, 219, 0.1);
}

.total-item.debe {
    background: rgba(231, 76, 60, 0.1);
}

.total-item.total {
    background: rgba(243, 156, 18, 0.1);
}

.total-item span {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.total-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.total-item.paga strong {
    color: var(--info);
}

.total-item.debe strong {
    color: var(--danger);
}

.total-item.total strong {
    color: var(--warning);
}

/* ======================================== 
   CONFIGURACIÓN
   ======================================== */

.config-header {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.config-header h2 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.config-header p {
    color: #7f8c8d;
    font-size: 14px;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.config-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.config-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.config-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.config-numero {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.config-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 600;
}

.config-status.fija {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
}

.config-status.normal {
    background: rgba(149, 165, 166, 0.1);
    color: #7f8c8d;
}

.config-info {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

.config-info strong {
    color: var(--dark);
    display: block;
    margin-top: 5px;
}

/* ======================================== 
   RADIO BUTTONS
   ======================================== */

.radio-group {
    display: flex;
    gap: 15px;
}

.radio-label {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-label input {
    margin-right: 8px;
}

.radio-label:has(input:checked) {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.1);
}

/* ======================================== 
   REPORTES
   ======================================== */

.reportes-container {
    max-width: 700px;
    margin: 0 auto;
}

.reportes-header {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reportes-header h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.reportes-header p {
    color: #7f8c8d;
    font-size: 14px;
}

.reportes-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-download {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--success) 0%, #229954 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
}

/* ======================================== 
   CUENTA
   ======================================== */

.cuenta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cuenta-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.cuenta-card h2 {
    text-align: center;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 30px;
}

.cuenta-info {
    max-width: 500px;
    margin: 0 auto 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-item label {
    font-weight: 600;
    color: #7f8c8d;
}

.info-item span {
    color: var(--dark);
    font-weight: 600;
}

.cuenta-actions {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
}

.cuenta-stats {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cuenta-stats h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

/* ======================================== 
   NOTIFICACIONES
   ======================================== */

.notificacion {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 300px;
    z-index: 99999;
}

/* ======================================== 
   RESPONSIVE DISEÑO
   ======================================== */

@media (max-width: 1024px) {
    .panel-sidebar {
        transform: translateX(-100%);
    }
    
    .panel-sidebar.active {
        transform: translateX(0);
    }
    
    .panel-content {
        margin-left: 0;
    }
    
    .btn-mobile-menu {
        display: block;
    }
    
    .unidades-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .header-left h1 {
        font-size: 20px;
    }
    
    .header-date {
        display: none;
    }
}

@media (max-width: 768px) {
    .panel-header {
        padding: 15px 20px;
    }
    
    .header-left h1 {
        font-size: 18px;
    }
    
    .panel-section {
        padding: 20px;
    }
    
    .unidades-grid {
        grid-template-columns: 1fr;
    }
    
    .dias-grid {
        grid-template-columns: 1fr;
    }
    
    .total-summary {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .week-selector {
        flex-direction: column;
        align-items: stretch;
    }
    
    .week-selector label {
        width: 100%;
    }
    
    .select-custom {
        width: 100%;
    }
    
    .config-grid {
        grid-template-columns: 1fr;
    }
    
    .cuenta-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .panel-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-left h1 {
        font-size: 16px;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-fingerprint {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .header-date {
        display: none;
    }
    
    .panel-section {
        padding: 15px;
    }
    
    .unidades-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .unidad-card {
        padding: 15px;
    }
    
    .modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .dias-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-danger {
        padding: 12px;
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .sidebar-header h3 {
        font-size: 16px;
    }
    
    .menu-item {
        padding: 12px 15px;
    }
    
    .menu-item i {
        font-size: 18px;
        margin-right: 10px;
    }

    /* Notificaciones móvil */
    .btn-notificaciones {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .notif-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    /* Botones de método en móvil */
    .btn-metodo {
        padding: 15px 10px !important;
        font-size: 14px !important;
    }
    
    #modal-notificaciones-masivas .modal-content {
        max-width: 100% !important;
        margin: 10px !important;
    }

}

/* ======================================== 
   CEO PANEL STYLES
   ======================================== */

.sidebar-ceo {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.ceo-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.ceo-avatar {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.stats-global {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card-large {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card-large.primary { border-left: 5px solid var(--primary); }
.stat-card-large.success { border-left: 5px solid var(--success); }
.stat-card-large.warning { border-left: 5px solid var(--warning); }
.stat-card-large.danger { border-left: 5px solid var(--danger); }

.stat-icon {
    font-size: 48px;
}

.stat-content h3 {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.stat-content .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
}

.hoteles-resumen h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark);
}

.hoteles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.hotel-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.hotel-header h3 {
    font-size: 18px;
    color: var(--dark);
}

.hotel-tipo {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.hotel-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.hotel-stat span {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
}

.hotel-stat strong {
    font-size: 20px;
    color: var(--dark);
}

.btn-ver-hotel {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ver-hotel:hover {
    background: var(--secondary);
}

.data-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--dark);
}

.data-table code {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.badge {
    background: rgba(52, 152, 219, 0.1);
    color: var(--info);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.selector-hotel {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.selector-hotel label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.reportes-opciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.reporte-option {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.reporte-option h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.usuarios-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.config-card-large {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.config-card-large h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.config-card-large p {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 14px;
}

.config-card-large.warning {
    border-left: 4px solid var(--warning);
}

/* ======================================== 
   HUELLA DIGITAL
   ======================================== */

.btn-fingerprint-register {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--info) 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-fingerprint-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.helper-text {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 8px;
    text-align: center;
}

.huella-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.huella-status.success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    display: block;
}

.fingerprint-scanner {
    padding: 40px;
    text-align: center;
}

.fingerprint-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 60px;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

.scanner-text {
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.scanner-subtext {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

/* ======================================== 
   LOADING SPINNER
   ======================================== */

.loading-spinner {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0e0e0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #7f8c8d;
    font-size: 14px;
}

/* ======================================== 
   PENDIENTES SUMMARY
   ======================================== */

.pendientes-summary {
    text-align: center;
    padding: 20px;
}

.btn-pendientes {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-pendientes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.badge-count {
    background: white;
    color: var(--danger);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
}

/* AGREGAR AL FINAL DE custom.css */

/* ======================================== 
   MENÚ DE ESTADOS
   ======================================== */

.estados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.btn-estado {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border: 3px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-estado:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn-estado.active {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.05);
}

.estado-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.btn-estado span {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.btn-estado small {
    font-size: 12px;
    color: #7f8c8d;
}

/* ======================================== 
   COLORES DE ESTADOS EN CARDS
   ======================================== */

.unidad-card {
    cursor: pointer;
}

.unidad-card.vacia {
    border-top-color: #27ae60 !important;
    background: linear-gradient(to bottom, rgba(39, 174, 96, 0.05) 0%, white 100%);
}

.unidad-card.ocupada {
    border-top-color: #e74c3c !important;
    background: linear-gradient(to bottom, rgba(231, 76, 60, 0.05) 0%, white 100%);
}

.unidad-card.apartada {
    border-top-color: #f39c12 !important;
    background: linear-gradient(to bottom, rgba(243, 156, 18, 0.05) 0%, white 100%);
}

/* ======================================== 
   MODAL FIRMA
   ======================================== */

.firma-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.firma-info p {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.8;
}

/* ======================================== 
   SELECTOR DE ESTADOS - VERTICAL MEJORADO
   ======================================== */

.estados-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.btn-estado {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border: 4px solid #e0e0e0;
    background: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-estado::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-estado:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.btn-estado.active {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.08);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-estado.active::before {
    background: var(--primary);
}

/* Checkmark cuando está seleccionado */
.btn-estado.active::after {
    content: '✓';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--primary);
    font-weight: bold;
    animation: checkPop 0.4s ease-out;
}

@keyframes checkPop {
    0% { transform: translateY(-50%) scale(0); }
    50% { transform: translateY(-50%) scale(1.3); }
    100% { transform: translateY(-50%) scale(1); }
}

.estado-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-estado:hover .estado-icon {
    transform: scale(1.15) rotate(5deg);
}

.btn-estado.active .estado-icon {
    transform: scale(1.2);
}

.estado-content {
    flex: 1;
    text-align: left;
}

.btn-estado span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.btn-estado small {
    display: block;
    font-size: 15px;
    color: #7f8c8d;
}

.btn-estado.active span {
    color: var(--primary);
}

/* Colores por estado */
.btn-estado[data-estado="vacia"] .estado-icon {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.btn-estado[data-estado="ocupada"] .estado-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.btn-estado[data-estado="apartada"] .estado-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

/* Modal estados más grande */
#modal-cambiar-estado .modal-content {
    max-width: 650px;
}

#modal-cambiar-estado .modal-body {
    padding: 35px;
}

/* ======================================== 
   ESCANEO DE HUELLA - MEJORADO
   ======================================== */

.fingerprint-scanner {
    padding: 40px 20px;
    text-align: center;
}

.fingerprint-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 60px;
    transition: all 0.3s ease;
}

.fingerprint-icon.scanning {
    animation: pulse 1.5s infinite;
}

.fingerprint-icon.success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    animation: checkPop 0.5s ease-out;
}

.fingerprint-icon.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    animation: shake 0.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

@keyframes checkPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.scan-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.scanner-text {
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.scanner-subtext {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

/* ======================================== 
   BOTÓN RECONOCIMIENTO FACIAL
   ======================================== */

.btn-facial {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.btn-facial:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid #27ae60;
    border-radius: 50%;
    pointer-events: none;
}

/* Agregar en custom.css */

@media (max-width: 768px) {
    .stats-global {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hoteles-grid {
        grid-template-columns: 1fr;
    }
    
    /* Menú hamburguesa más visible */
    .btn-mobile-menu {
        background: var(--primary);
        color: white;
        padding: 12px;
        border-radius: 8px;
    }
}

/* ========================================
   AGREGAR AL FINAL DE custom.css
   ESTILOS PARA SISTEMA QR
   ======================================== */

/* Botón QR en header */
.btn-qr-scan {
    animation: pulse-qr 2s infinite;
}

@keyframes pulse-qr {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

/* Video container para QR scanner */
.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid #27ae60;
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-overlay 2s infinite;
}

@keyframes pulse-overlay {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

/* Checkmarks animados */
.checkmark-animated {
    animation: checkPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Botones biométricos mejorados */
.btn-biometric {
    position: relative;
    overflow: hidden;
}

.btn-biometric::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-biometric:hover::before {
    width: 300px;
    height: 300px;
}

/* Modal QR scanner específico */
#modal-qr-scanner .modal-content {
    max-width: 600px;
}

#modal-qr-scanner video {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive QR */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
    
    .video-overlay {
        width: 150px;
        height: 150px;
    }
    
    .btn-biometric {
        height: 100px !important;
        font-size: 14px !important;
    }
    
    .btn-biometric span:first-child {
        font-size: 36px !important;
    }
}

/* Animación de escáner QR */
.qr-scanning-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0%, 100% {
        top: 20%;
    }
    50% {
        top: 80%;
    }
}

/* Botón enviar QR mejorado */
.btn-success {
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Status QR en tiempo real */
#qr-status {
    transition: all 0.3s ease;
}

#qr-status span {
    display: inline-block;
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   GASTOS - LAYOUT VERTICAL
   ======================================== */

.gasto-row {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    animation: slideInGasto 0.4s ease-out;
}

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

.gasto-row:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.gasto-row input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gasto-row input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#gastos-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    max-height: 400px;
    overflow-y: auto;
}

#gastos-container::-webkit-scrollbar {
    width: 6px;
}

#gastos-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

#gastos-container::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

#gastos-container::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}

#gastos-total {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
    border-left: 5px solid #667eea;
}

#total-gastos-valor {
    font-size: 24px;
    color: #764ba2;
}

.btn-eliminar-gasto {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-eliminar-gasto:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-eliminar-gasto:active {
    transform: scale(0.95);
}

/* ========================================
   NOTIFICACIONES APP
   ======================================== */

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.btn-notificaciones {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
    }
}

.btn-notificaciones:hover {
    transform: scale(1.1);
}

/* Botones de método */
.btn-metodo {
    transition: all 0.3s ease;
}

.btn-metodo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-metodo:active {
    transform: translateY(0);
}

/* ========================================
   BOTONES DE ACCESO RÁPIDO CEO
   ======================================== */

.botones-acceso-rapido {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-acceso-rapido:hover {
    transform: translateY(-5px) !important;
}

.btn-acceso-rapido:active {
    transform: translateY(-2px) scale(0.98) !important;
}

/* Responsive botones */
@media (max-width: 768px) {
    .botones-acceso-rapido {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .btn-acceso-rapido {
        padding: 20px !important;
    }
    
    .btn-acceso-rapido div {
        font-size: 36px !important;
    }
    
    .btn-acceso-rapido h3 {
        font-size: 16px !important;
    }
}


/* ========================================
   NOTIFICACIÓN DE ESCANEO QR
   ======================================== */

@keyframes scanPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
}

.notificacion {
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
               scanPulse 2s infinite !important;
}

/* Efecto visual cuando se detecta el lector */
body.qr-scanning {
    position: relative;
}

body.qr-scanning::before {
    content: '🔍 Escaneando...';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(102, 126, 234, 0.95);
    color: white;
    padding: 30px 50px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 700;
    z-index: 99998;
    animation: scanPulse 1s infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Estilos adicionales para tabs de lavandería */
.login-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.login-tabs .tab-button {
    flex: 1;
    padding: 12px;
    background: #ecf0f1;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-tabs .tab-button.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Animaciones suaves */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ======================================== 
   ENTRADA DE DINERO
   ======================================== */

.input-money {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

/* ======================================== 
   ICONOS (usando Unicode)
   ======================================== */

.icon-user::before { content: '👤'; }
.icon-lock::before { content: '🔒'; }
.icon-shield::before { content: '🛡️'; }
.icon-eye::before { content: '👁️'; }
.icon-eye-off::before { content: '👁️'; }
.icon-building::before { content: '🏨'; }
.icon-list::before { content: '📋'; }
.icon-settings::before { content: '⚙️'; }
.icon-download::before { content: '⬇️'; }
.icon-logout::before { content: '🚪'; }
.icon-menu::before { content: '☰'; }
.icon-fingerprint::before { content: '👆'; }
.icon-check-circle::before { content: '✅'; }
.icon-alert::before { content: '⚠️'; }
.icon-user-check::before { content: '✓'; }
.icon-save::before { content: '💾'; }
.icon-file-text::before { content: '📄'; }
.icon-scan::before { content: '🔍'; }
.icon-dashboard::before { content: '📊'; }
.icon-chart::before { content: '📈'; }
.icon-users::before { content: '👥'; }