body {
  background-color: #f9fafb;
  font-family: Arial, Helvetica, sans-serif;
}
h5.section-title {
  color: #2e7d32;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.option-card {
  text-align: center;
  margin-bottom: 30px;
}
.option-card img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}
.option-card a {
  display: block;
  border: 1px solid black;
}
.option-card a:hover,
.btn-outline-secondary:hover {
  color: #ffffff !important;
}

/* Calculadora */
.form-container {
  max-width: 600px;
  margin: auto;
  background: transparent;
  padding: 2rem;
  border: none;
  /* border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}
.form-container button {
  border: 1px solid black;
}
.readonly-field {
  background-color: #f9f9f9;
  cursor: copy;
}
.note {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 10px;
}

/* ESTILOS DE LA VISTA: CONSULTA DE TRÁMITE (pages/consulta.html) */
 
.consulta-view-container {
    max-width: 600px;
    padding: 40px;
    margin: auto; 
    text-align: center;
}

.consulta-form-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.consulta-form-row label {
    width: 40%;
    max-width: 180px;
    text-align: right;
    padding-right: 15px;
    font-weight: normal; 
    color: #555;
    white-space: nowrap; 
}
.consulta-form-row input {
    width: 60%;
    max-width: 300px;
    height: 45px; 
    border: 1px solid #ccc; 
    border-radius: 10px;
    padding: 0.375rem 0.75rem;
}

.btn-principal {
    background-color: #28a745;
    border-radius: 10px;
    font-weight: bold;
    color: white;
    padding: 10px 30px;
    margin: 0 15px;
}
.btn-principal:hover {
    background-color: #1e7e34;
    border-color: #1c7430;
    color: white;
}

.btn-secundario-outline {
    border-radius: 10px;
    font-weight: bold;
    padding: 10px 30px;
    margin: 0 15px;
}

/*
 * --------------------------------
 * ESTILOS DE RESULTADO DE CONSULTA
 * --------------------------------
 */
.detalle-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.detalle-row:last-of-type {
    border-bottom: none;
}

.detalle-label {
    font-weight: bold;
    color: #444;
    width: 45%;
    text-align: left;
}

.detalle-value {
    color: #000;
    width: 55%;
    text-align: left;
}
.detalle-value strong {
    color: #2e7d32;
}