body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-responsive {
    max-width: 1200px;
    margin: 0 auto;
}

.table thead th {
    background-color: #007bff;
    color: white;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.btn-success {
    background-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
}

/* Estilo para el botón de PDF dentro de la tabla */
.btn-pdf {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 20px;
}

.btn-pdf i {
    transition: color 0.3s ease;
}

.btn-pdf:hover i {
    color: #ff0000;
}

