/* Estilo base */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Encabezados */
h1, h2, h3 {
    text-align: center;
    color: #333;
}

/* Estilo de los formularios */
form {
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="date"], select, button {
    padding: 12px;
    font-size: 16px;
    width: 100%;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Estilo de los inputs de fecha */
input[type="date"] {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    cursor: pointer;
}

input[type="date"]:hover {
    border-color: #888;
}

/* Estilo de los botones */
button {
    background-color: #555;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #444;
}

/* Mensaje de error */
.error {
    color: red;
    text-align: center;
}

/* Estilo de las tablas */
.report-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
}

.report-table th, .report-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ccc;
}

.report-table th {
    background-color: #333;
    color: #fff;
}

