/* Estilos personalizados para el sistema de control horario */

/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Tarjetas */
.tarjeta {
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Botones de fichaje */
.card-fichaje {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.fichaje-btn {
    transition: all 0.3s;
}

.fichaje-btn:hover:not(:disabled) {
    transform: scale(1.05);
    background-color: rgba(255,255,255,0.9);
}

.fichaje-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Iconos grandes */
.icono-grande {
    font-size: 3rem;
    color: #4dabf7;
}

/* Estadísticas */
.estadistica-numero {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.estadistica-titulo {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tablas */
.tabla-datos {
    font-size: 0.9rem;
}

.tabla-datos th {
    background-color: #f1f5f9;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

/* Badges personalizados */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Progress bars */
.progress {
    border-radius: 10px;
}

/* Alertas */
.alert {
    border-radius: 8px;
    border: none;
}

/* Modales */
.modal-content {
    border-radius: 10px;
    border: none;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .estadistica-numero {
        font-size: 2rem;
    }
    
    .icono-grande {
        font-size: 2.5rem;
    }
}
/* Estilo para botón de pausa médica */
.btn-medica {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    border: none;
}

.btn-medica:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7b7b 100%);
    color: white;
}

/* Badge para pausas médicas */
.badge-medica {
    background-color: #dc3545;
    color: white;
}

/* Checkbox personalizado para remunerada */
.form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}