
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid black;
    font-size: 14px; 
}
th, td {
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
.button-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
input[type="text"], input[type="number"], textarea, select {
    padding: 8px;
    width: 300px;
}
button {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
.eliminar {
    background-color: #dc3545;
}
.eliminar:hover {
    background-color: #c82333;
}

#descargarBtn {
    background-color: #008314;
}