.prometeo-chat-block {
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  padding: 16px;
  border-radius: 12px;
  background: #f9f9fb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: "Segoe UI", system-ui, sans-serif;
}

.prometeo-title {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #333;
  display: block;
  text-align: center;
}

.prometeo-input-area {
  display: flex;
  gap: 8px;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}

.prometeo-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}

.prometeo-input:focus {
  outline: none;
  border-color: #0078d7;
  box-shadow: 0 0 4px rgba(0,120,215,0.3);
}

.prometeo-button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: #2b5f81;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.prometeo-button:hover { background: #1a394d; }

.prometeo-loading {
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

.prometeo-results {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee;
  min-height: 50px;
}
.prometeo-results {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee;
  min-height: 150px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prometeo-message {
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
}

.prometeo-message.user {
  align-self: flex-end;
  background: #0078d7;
  color: #fff;
}

.prometeo-message.bot {
  align-self: flex-start;
  background: #f1f1f1;
  color: #333;
}
.busqueda-selector {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.busqueda-selector label {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.busqueda-selector select,
.busqueda-selector input[type="text"],
.busqueda-selector input[type="date"] {
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 10px;
  border-radius: 8px;
  background-color: #fff;
  transition: border-color 0.2s ease-in-out;
}

.busqueda-selector select:focus,
.busqueda-selector input:focus {
  border-color: #007bff;
  outline: none;
}

.busqueda-selector input[readonly] {
  background-color: #f9f9f9;
  color: #555;
}
