/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }
  
   /* Fondo general */
body {
    background-color: #005f61;
    font-family: Arial, "Roboto", sans-serif;
    color: #202124;
}

/* Contenedor principal */
article {
    max-width: 750px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    article {
        padding: 30px;  /* Ajusta el padding para pantallas pequeñas */
    }
}

/* Encabezado del formulario */
.question-title-container {
    border-left: 10px solid #38a5a7;
    padding-left: 15px;
    margin-bottom: 30px;
}

.survey-header h1 {
    font-size: 28px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 5px;
}

.question-text p font, .ls-label-question{
    color: #232425;
    font-size: 15px;
    font-weight: bold;
}

/* Preguntas */
.question-container {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s;
}


.answer-container {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.group-title{
    font-size: 30px;
    font-weight: bold;
}


/* Inputs */
.form-control,
textarea,
select {
    border-radius: 6px;
    padding: 12px;
    border: 1px solid #dadce0;
    transition: border 0.2s, box-shadow 0.2s;
}

.form-control:focus,
textarea:focus,
select:focus {
    border-color: #38a5a7;
    box-shadow: 0 0 5px rgba(103,58,183,0.3);
    outline: none;
}

/* Botones */

#ls-button-previous{
    background-color: #96ba3a;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-weight: 500;
    transition: background 0.3s;    
}

#ls-button-submit{
    background-color: #96ba3a;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-weight: 500;
    transition: background 0.3s;    
}

#ls-button-previous:hover, #ls-button-submit:hover{
    
    background-color: #42962d;
}

/* Btn ant y sig */ 
#ls-button-submit,  #ls-button-previous{
    text-align: right;
    margin-top: 20px;

}
#navigator-container{
    margin-top: -2em;
}


/* Barra de progreso */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.progress-bar {
    background-color: #38a5a7; 
    
}

.brand-logo .top-container .top-content{
    margin-top: -5em;
}