/* ======== ESTILOS GENERALES ======== */
body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: white;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 550px;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  color: #0078d4;
  margin-bottom: 25px;
  font-size: 24px;
}

/* ======== FORMULARIO DE BÚSQUEDA ======== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  font-size: 16px;
}

input[type='text'] {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  font-size: 18px;
  box-sizing: border-box;
}

.btn-grande,
button {
  background: #0078d4;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  transition: all 0.2s ease;
}

.btn-grande:hover,
button:hover {
  background: #005fa3;
  transform: scale(1.03);
}

/* ======== RESULTADOS ======== */
.resultado-card {
  background: #e7f5ff;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-size: 16px;
}

.error {
  color: red;
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}

/* ======== TABLA DE REUNIONES ======== */
h2 {
  text-align: center;
  color: #333;
  margin-top: 25px;
}

.tabla-reuniones {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 16px;
}

.tabla-reuniones th {
  background: #0078d4;
  color: white;
  padding: 12px;
  text-align: left;
}

.tabla-reuniones td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.tabla-reuniones tr:hover {
  background: #f0f8ff;
}

.tabla-reuniones a {
  color: #0078d4;
  font-weight: bold;
  text-decoration: none;
}

.tabla-reuniones a:hover {
  text-decoration: underline;
}

/* ======== BOTÓN VOLVER ======== */
.volver {
  display: block;
  margin-top: 25px;
  text-align: center;
  text-decoration: none;
  background: #444;
  color: white;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.2s ease;
}

.volver:hover {
  background: #000;
  transform: scale(1.03);
}
