/* Estilos generales */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.search-section {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.search-form {
  display: flex;
  gap: 12px;
}

#search-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

#search-btn {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

/* Estilos para tabla de resultados */
.results-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.results-table th {
  background-color: #3498db;
  color: white;
  padding: 12px 15px;
  text-align: left;
}

.results-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

/* Estilos para tarjeta de detalles */
.detail-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  margin-top: 20px;
}

.card-row {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.card-label {
  flex: 1;
  font-weight: bold;
  color: #2c3e50;
}

.card-value {
  flex: 2;
  color: #555;
}


#search-message {
  margin-top: 1rem;
  text-align: left;
  min-height: 40px; /* Reserva espacio aunque no haya mensaje */
}

.not-found-message {
  display: flex;
  align-items: center;
  gap: 0.7em;
  background: #ffeaea;
  color: #c0392b;
  border-radius: 6px;
  padding: 0.7em 1em;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(192,57,43,0.08);
  margin-top: 0.5em;
}
.not-found-message i {
  font-size: 1.5em;
}
