/* General del modal */
#termsModal .modal-content {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    text-align: justify;

}

/* Cabecera */
#termsModal .modal-header {
    border-bottom: 1px solid #ddd;
    padding: 16px 24px;
}

#termsModal .modal-title {
    font-size: 18px;
    font-weight: 600;
}

/* Cuerpo del modal */
#termsModal .modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-bottom: 10px; /* reduce el espacio debajo del contenido */
}

/* Cuerpo con scroll */
#termsModal .modal-body::-webkit-scrollbar {
    width: 6px;
}
#termsModal .modal-body::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/*Footer */
#termsModal .modal-footer {
    padding: 10px 24px;
    margin-top: 0;
    border-top: 1px solid #ddd;
    justify-content: center; /* o 'end' para derecha */
}
