@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.pestaña-activa {
    border-bottom: 4px solid #D32F2F;
    color: #D32F2F;
}

.tarjeta-maquina-parada {
    border-left: 8px solid #D32F2F;
}

.tarjeta-maquina-operando {
    border-left: 8px solid #22C55E;
}

/* Animaciones del Modal */
.mostrar-modal {
    display: flex !important;
    opacity: 1 !important;
}

.mostrar-modal #contenedor-modal {
    transform: scale(1) !important;
}

@keyframes reboteModal {
    0% { transform: scale(0.9); }
    70% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animar-modal {
    animation: reboteModal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Capas de Autenticación y Selección */
.capa-superpuesta-autenticacion {
    background: linear-gradient(135deg, #121212 0%, #212121 100%);
    z-index: 999;
}

.panel-cristal {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tarjeta-seleccion {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tarjeta-seleccion:hover {
    transform: translateY(-5px);
    background: rgba(211, 47, 47, 0.1);
    border-color: #D32F2F;
}
