/* Fuente primaria profesional */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Estilos generales */
body {
  font-family: 'Roboto', sans-serif;
  margin: 30px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
}

/* Títulos con estilo moderno y sutil sombra */
h1, h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Formularios: estilo de tarjeta, con borde redondeado y sombra */
form {
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Entradas, selects y botones con diseño uniforme */
input, select, button {
  font-size: 1rem;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #bdc3c7;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* Botones con fondo profesional y transición suave */
button {
  background-color: #3498db;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}

/* Tablas con diseño limpio y profesional */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  margin-top: 20px;
  border: 1px solid #ecf0f1;
}

th, td {
  padding: 12px 15px;
  border: 1px solid #ecf0f1;
  text-align: left;
}

th {
  background-color: #3498db;
  color: #fff;
}

td {
  background-color: #fdfdfd;
}

/* Espaciado en secciones */
section {
  margin-bottom: 30px;
}

/* Estilos para enlaces con transición */
a {
  color: #3498db;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}
