/* style.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    padding-top: 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

h2 {
    margin-bottom: 1.5rem;
    color: #0d6efd;
}

.table th {
    background-color: #0d6efd;
    color: white;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.btn-outline-secondary:hover {
    background-color: #e9ecef;
}

.text-muted small {
    font-size: 0.9em;
}

/* Espaciado en formularios */
.form-select, .form-control {
    border-radius: 8px;
}

/* Iconos pequeños */
td input::placeholder {
    color: #aaa;
}