/* custom.css */

/* Estilo general de la página */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

.container {
    max-width: 900px;
}

/* Navbar */
.navbar {
    background-color: #343a40;
}

.navbar .navbar-brand {
    color: #fff;
}

.navbar .navbar-brand:hover {
    color: #ffcc00;
}

/* Formularios y botones */
.form-label {
    font-weight: bold;
}

.btn {
    font-size: 14px;
}

.btn-outline-light {
    border-color: #ffcc00;
    color: #ffcc00;
}

.btn-outline-light:hover {
    background-color: #ffcc00;
    color: #fff;
}

/* Alertas */
.alert-success {
    background-color: #28a745;
    color: #fff;
}

.alert-danger {
    background-color: #dc3545;
    color: #fff;
}

.alert-info {
    background-color: #17a2b8;
    color: #fff;
}

/* Tabla SQL */
.table {
    width: 100%;
    margin-top: 20px;
}

.table th,
.table td {
    text-align: center;
}

.table th {
    background-color: #343a40;
    color: #fff;
}

.table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table tr:hover {
    background-color: #ddd;
}
