/* assets/css/style.css */
body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.navbar-custom {
    background-color: #343a40; 
}
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: bold;
    color: white;
}
.status-terminado { background-color: #28a745; } 
.status-espera { background-color: #fd7e14; }    
.status-proceso { background-color: #ffc107; color: #212529; } 
.status-cancelado { background-color: #dc3545; } /* Rojo para Cancelado */

.card-header-custom {
    background: linear-gradient(45deg, #0d6efd, #0a58ca);
    color: white;
}

/* --- NUEVOS ESTILOS PARA EL DASHBOARD --- */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 12px;
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}
.bg-blue-light { background-color: #e7f1ff; color: #0d6efd; }
.bg-green-light { background-color: #d1e7dd; color: #198754; }
.bg-purple-light { background-color: #e0cffc; color: #6610f2; }
.bg-teal-light { background-color: #d2f4ea; color: #20c997; }

.dashboard-title {
    font-weight: 300;
    color: #495057;
}