/* estilos.css */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Fondo y tipografía */
body {
    background-color: #f4f6f9;
    color: #333;
    padding: 20px;
    font-size: 16px;
}

/* Títulos */
h1 {
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

table th {
    background-color: #2c3e50;
    color: #fff;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Botones y enlaces 
a, button {
    display: inline-block;
    padding: 8px 14px;
    margin: 4px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

a:hover, button:hover {
    background-color: #2980b9;
}*/
.volver {
    background-color: #27ae60;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
}

.volver:hover {
    background-color: #1e8449;
}

/* Formularios */
form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

input[type="text"], input[type="date"], textarea, select, input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea:focus, select:focus, input:focus {
    border-color: #3498db;
    outline: none;
}

/* Indicador de revisión pendiente */
.revision-pendiente {
    background-color: #f39c12;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
}
.header-bar {
  position: relative;
  max-width: 900px;   /* igual que el contenedor central */
  margin: 0 auto 25px auto;
  padding: 0 10px;
}

.header-bar h1 {
  margin: 0;
  font-size: 1.8em;
  color: #2c3e50;
  text-align: left;
}



