body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1B156C, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.containerIndex {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.logo {
    width: 200px;
    margin: 20px 0;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
textarea {
    width: 90%;
    max-width: 250px;
    padding: 10px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    height: 80px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

/* Estilos de botones de Index.php */

.button-container {
    text-align: center;
    margin-top: 20px;
}

.button-container a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button-container a:hover {
    background-color: #0056b3;
}

/* ESTILOS DE "filtrarDatos.php" */

.filter-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
    text-align: center;
}

.filter-container h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.filter-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-group {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px;
}

.filter-group input {
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.search-button {
    background-color: #F26522;
    border: none;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button p {
    margin: 0;
    color: #fff;
}

.search-button:hover {
    background-color: #D44D0E;
}

.filter-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.filter-table thead {
    background-color: #007bff;
    color: white;
}

.filter-table th,
.filter-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

.filter-table th {
    background-color: #007bff;
    color: white;
}

.filter-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.button-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.button-fil {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    bottom: 20px;
    right: 20px;
}

.btn-guardar-datos,
.btn-imprimir-etiquetas {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
    width: auto;
}

.btn-guardar-datos {
    background-color: #007bff;
    color: white;
}

.btn-guardar-datos:hover {
    background-color: #0056b3;
}

.btn-imprimir-etiquetas {
    background-color: #F26522;
    color: white;
}

.btn-imprimir-etiquetas:hover {
    background-color: #D44D0E;
}

/* Asegúrate de tener una clase para el contenedor */
.container {
    text-align: center;
    margin-top: 50px;
}

h2 {
    margin-bottom: 20px;
}

.form-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Añade separación entre los botones */
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-orange {
    background-color: orange;
    color: white;
}

.btn:hover {
    opacity: 0.8;
}

/* Asegúrate de que el contenedor sea responsable de la separación de los botones */
.form-section button {
    margin: 10px;
}