/* Estilo Global */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff; /* Fondo blanco */
    margin: 0;
    padding: 0;
    color: #333333; /* Texto gris oscuro */
    font-size: 14px;
}

/* Encabezado */
header {
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #323e50; /* Azul oscuro */
    color: white;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #d4d4d4; /* Gris claro */
}

.header-employee {
    font-size: 0.9em;
    text-align: right;
    color: #b0b0b0; /* Gris tenue */
}

.header-employee a {
    text-decoration: underline;
    color: white;
}

/* Contenido */
.contenido {
    padding: 0px;
    background-color: #f3f3f3; /* Fondo gris claro */
}

.contenido-main {
    margin: 5px;
    padding: 5px;
    background-color: #ffffff;
}

/* Botones */
button, input[type="submit"] {
    background-color: #323e50; /* gris Office */
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #666666; /* Azul más oscuro */
}

button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

/* Formulario */
form {
    margin: 20px;
}

input[type="file"], input[type="text"], input[type="number"], input[type="password"], select {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #c5c5c5;
    border-radius: 3px;
}

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 5px 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

th, td {
    padding: 5px;
    text-align: left;
}

th {
    background-color: #f4f4f4; /* Gris tenue */
    border-bottom: 2px solid #d3d3d3;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.pagination button {
    background-color: #666666;
    color: white;
    border: none;
    padding: 8px 12px;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 2px;
}

.pagination button:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
}