/* Estilos Generales y Reseteo */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

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

/* Estilo del login */
.login-container {
    max-width: 350px;
    margin: 50px auto;
    text-align: center;
}

.wims-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wims-brand .icon {
    font-size: 40px;
    color: #4a4a4a;
}

.wims-brand .text {
    font-size: 24px;
    font-weight: bold;
    margin-top: 5px;
    color: #4a4a4a;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #777;
    text-align: left;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 5px;
}

.checkbox-container label {
    font-size: 14px;
    color: #555;
}

/* Estilo del bot��n (uniforme para toda la app) */
.button {
    width: 100%;
    background-color: #1f2937;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #374151;
}

.forgot-password {
    display: block;
    margin-top: 15px;
    color: #777;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.forgot-password:hover {
    text-decoration: underline;
}

.error {
    color: #d9534f;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Estilos del Dashboard y Reportes */
.dashboard-title, .report-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
}

.dashboard-subtitle, .report-subtitle {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.menu-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-options li {
    margin-bottom: 15px;
}

.menu-link {
    display: block;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    font-size: 16px;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-align: center;
}

.menu-link:hover {
    background-color: #e2e6ea;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logout-button {
    margin-top: 30px;
    width: auto;
    display: inline-block;
    padding: 12px 25px;
}

/* Filtros del Reporte */
.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
    text-align: left;
}

.filter-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.filter-group input, .filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.filter-button {
    width: auto;
    padding: 10px 20px;
}

/* Tabla del Reporte */
.report-table-container {
    overflow-x: auto;
    width: 100%;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.report-table th, .report-table td {
    border: 1px solid #e9ecef;
    padding: 12px;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
}

.report-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.report-table th a {
    text-decoration: none;
    color: #333;
    display: block;
}

.report-table th:hover {
    background-color: #e2e6ea;
}

.report-table .sort-asc::after {
    content: " ��";
}

.report-table .sort-desc::after {
    content: " ��";
}

.report-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.report-table tbody tr:hover {
    background-color: #f1f1f1;
}

.download-button {
    margin-top: 20px;
    width: auto;
    display: inline-block;
    padding: 12px 25px;
}

.print-label-button {
    margin-right: 15px; /* o el valor que prefieras */
}

