/* Estilos Generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* Tarjetas del Dashboard */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
}

.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-left-info {
    border-left: 0.25rem solid #36b9cc !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

/* Selector de Prioridad */
.prioridad-badge {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.prioridad-baja {
    background-color: #1cc88a;
}

.prioridad-media {
    background-color: #36b9cc;
}

.prioridad-alta {
    background-color: #e74a3b;
}

/* Estado de la avería */
.estado-pendiente {
    background-color: #f6c23e;
}

.estado-en-proceso {
    background-color: #36b9cc;
}

.estado-resuelta {
    background-color: #1cc88a;
}

.estado-cerrada {
    background-color: #858796;
}

/* Form Styles */
.form-control:focus, .form-select:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
}

.form-label {
    font-weight: 500;
}

/* Navbar */
.navbar {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

/* Tables */
.table th {
    background-color: #f8f9fc;
}

/* Custom Chart Styles */
.chart-pie {
    position: relative;
    height: 15rem;
    width: 100%;
}

/* Tooltips */
.tooltip {
    opacity: 0.9 !important;
}

/* Alerts */
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* Login */
.login-page {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    height: 100vh;
}

.login-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chart-pie {
        height: 12rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}
