.fbs__net-navbar {
    position: static !important; 
    width: 100%; 
    box-sizing: border-box; 
    background-size: cover;
    min-height: 240px;
        margin-bottom: 3em;
}


.evaluation-section {
    max-width: 900px;
    margin: auto;
}

.evaluation-table {
    width: 100%;
    border-collapse: collapse;
}

.evaluation-table th, .evaluation-table td {
    text-align: center;
    vertical-align: middle;
    padding: 0.5rem;
    padding-bottom: 0em;
}

.evaluation-table th {
    font-weight: 600;
    font-size: 0.9rem;
}

.evaluation-table td:first-child {
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    padding-top: 2em;
    padding-bottom: 2em;
}

.evaluation-table tr + tr {
    border-top: 1px solid #ccc;
}

input[type="radio"] {
    accent-color: #3b3d9c !important;
    width: 1.1rem;
    height: 1.1rem;
}

@media (max-width: 576px) {
    .evaluation-table th, .evaluation-table td {
      padding: 0.3rem;
    }
}

.nps-block {
    max-width: 100%;
    margin: auto;
}

.nps-label {
    font-weight: 600;
    margin-bottom: 1rem;
}

.nps-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2.0rem;
    align-items: center;
    justify-content: center;
}

.nps-options input[type="radio"] {
    display: none;
}

.nps-options label {
    background-color: #e4e4e4;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
}

.nps-options input[type="radio"]:checked + label {
    background-color: #3b3d9c !important;
    color: white;
}

@media (max-width: 576px) {
    .nps-options label {
      flex: 1 1 20%;
      padding: 0.4rem;
    }
}

.ocultar {
    display: none;
}

.login_input_text {
    border: none;
    border-bottom: 1px solid #37393b;
    border-radius: 0;
    padding: 8px 0;
    background-color: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    margin: auto;
}

.login_input_text {
    width: 450px;
    font-size: 16px;
}

.login_input_text {
    width: 100%;
}

.login_input_text {
    border: none;
    border-bottom: 1px solid #777777;
    border-radius: 0;
    padding: 8px 0;
    background-color: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    margin: auto;
}

.alerta {
    color:red;
    font-size: 13px;
}

.error-placeholder::placeholder { 
    color: red; 
} 

.error-placeholder::-webkit-input-placeholder { 
    color: red; 
} 

.error-placeholder::-moz-placeholder { 
    color: red; 
} 

.error-placeholder:-ms-input-placeholder { 
    color: red; 
}

.errores {
    color: red;
    font-size: 12px;
}

.checar {
    background-color: #3b3d9c !important;
    color: white;
}

/* Estilo general para radio buttons */
input[type="radio"] {
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
    appearance: none; 
    border: 1px solid #000000; 
    border-radius: 50%; 
    background-color: #fff; 
    position: relative;
}

/* Estilo para radio buttons en evaluation-table */
.evaluation-table input[type="radio"] {
    display: inline-block; 
}

/* Estilo para radio buttons marcados o con clase checandose */
.evaluation-table input[type="radio"].checandose,
.evaluation-table input[type="radio"]:checked {
    border: 2px solid #44499b; 
}

/* Círculo interno para el estado checked o checandose */
.evaluation-table input[type="radio"].checandose::before,
.evaluation-table input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.4rem; 
    height: 0.4rem;
    background-color: #44499b; 
    border-radius: 50%;
}

/* Media query para pantallas pequeñas */
@media (max-width: 576px) {
    .evaluation-table input[type="radio"] {
        width: 0.9rem;
        height: 0.9rem;
    }
    
    .evaluation-table input[type="radio"].checandose::before,
    .evaluation-table input[type="radio"]:checked::before {
        width: 0.5rem;
        height: 0.5rem;
    }
}

@media (max-width: 768px) {
  .evaluation-table thead { display: none; }
  .evaluation-table,
  .evaluation-table tbody { display: block; width: 100%; }

  .evaluation-table tr {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
  }

  /* la pregunta arriba */
  .evaluation-table td:first-child {
    display: block;
    text-align: left;
  }

  /* radios en fila horizontal */
  .evaluation-table td:not(:first-child) {
    display: inline-flex;         /* para que queden en la misma línea */
    flex-direction: column;       /* número arriba, radio abajo */
    align-items: center;
    justify-content: center;
    min-width: 40px;
    margin-right: 6px;
  }

  .evaluation-table td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 0.85em;
  }
}
