/**
 * Styles for local_inscribete plugin.
 *
 * @package    local_inscribete
 * @copyright  2024 Tu Institución
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

/* Ocultar navbar en página de inscripción */
body.path-local-inscribete_virtual header#page-header,
body.path-local-inscribete_virtual nav.navbar,
body.path-local-inscribete_virtual .navbar,
body.path-local-inscribete_virtual #page-navbar,
body.path-local-inscribete_virtual .breadcrumb-nav,
body.path-local-inscribete_virtual #header,
body.path-local-inscribete_virtual .fixed-top {
    display: none !important;
}

/* Quitar margin-top del main-inner solo para inscribete */
body.path-local-inscribete_virtual #page.drawers .main-inner {
    margin-top: 0;
}

/* Ajustar el contenido principal sin el espacio del navbar */
body.path-local-inscribete_virtual #page {
    margin-top: 0 !important;
    padding-top: 20px !important;
}

body.path-local-inscribete_virtual #page-wrapper {
    margin-top: 0 !important;
}

body.path-local-inscribete_virtual #topofscroll {
    padding-top: 0 !important;
}

/* Container principal */
.inscribete-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Progress bar */
.inscribete-progress-wrapper {
    position: relative;
    margin-bottom: 10px;
    padding-top: 80px; /* Espacio para el sapito */
}

.inscribete-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
}

/* Sapito mascota */
.sapo-mascota {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    transition: left 0.6s ease-in-out, transform 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.sapo-mascota img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Animación de rebote cuando llega al destino */
@keyframes sapoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.sapo-mascota.bounce {
    animation: sapoBounce 0.5s ease;
}

/* Animación de caminar */
@keyframes sapoWalk {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-2deg); }
    75% { transform: translateY(-3px) rotate(2deg); }
}

.sapo-mascota.walking {
    animation: sapoWalk 0.2s ease infinite;
}

/* Celebración cuando completa */
@keyframes sapoCelebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-5deg); }
}

.sapo-mascota.celebrate {
    animation: sapoCelebrate 0.6s ease;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    min-height: 80px;
}

.progress-step .step-number {
    width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background-color: #0d6efd;
    color: white;
}

.progress-step.completed .step-number {
    background-color: #198754;
}

.progress-step .step-label {
    margin-top: 8px;
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    max-width: 80px;
    line-height: 1.3;
}

.progress-step.active .step-label {
    color: #0d6efd;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 3px;
    background-color: #e9ecef;
    margin: 0 10px;
    margin-top: 20px;
    align-self: flex-start;
}

.progress-line.completed {
    background-color: #198754;
}

/* Form steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    margin-bottom: 10px;
    color: #212529;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 10px;
}

.step-description {
    color: #6c757d;
    margin-bottom: 30px;
}

/* Form groups */
.inscribete-form .form-group {
    margin-bottom: 20px;
}

.inscribete-form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.inscribete-form .required {
    color: #dc3545;
}

.inscribete-form .form-control {
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
}

.inscribete-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.inscribete-form .form-control:disabled,
.inscribete-form .form-control[readonly] {
    background-color: #f8f9fa;
}

/* Tipo documento switch */
.tipo-documento-switch {
    margin-bottom: 10px;
}

.tipo-documento-switch .btn-group {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 200px;
}

.tipo-documento-switch .btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #0d6efd;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}

.tipo-documento-switch .btn:first-child {
    border-radius: 8px 0 0 8px;
}

.tipo-documento-switch .btn:last-child {
    border-radius: 0 8px 8px 0;
}

.tipo-documento-switch .btn.active {
    background-color: #0d6efd;
    color: white;
}

.tipo-documento-switch .btn:not(.active) {
    background-color: white;
    color: #0d6efd;
}

.tipo-documento-switch .btn:not(.active):hover {
    background-color: #e7f1ff;
}

.tipo-documento-switch .btn input[type="radio"] {
    display: none;
}

/* Responsive para tipo documento y celular */
@media (max-width: 576px) {
    .tipo-documento-switch .btn-group {
        max-width: 100%;
    }

    .tipo-documento-switch .btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .dni-group .form-control::placeholder {
        font-size: 12px;
    }

    .dni-group .form-control {
        font-size: 14px;
    }

    /* Campo celular responsive */
    #celular::placeholder {
        font-size: 12px;
    }

    #celular {
        font-size: 14px;
    }
}

/* DNI group */
.dni-group .input-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dni-group .form-control {
    flex: 1;
    min-width: 0;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
}

.dni-group .btn {
    padding: 10px 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Feedback */
.form-feedback {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    display: none;
}

.form-feedback.show {
    display: block;
}

.form-feedback.success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.form-feedback.error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.form-feedback.info {
    background-color: #cff4fc;
    color: #055160;
    border: 1px solid #b6effb;
}

/* Loader */
.loader {
    text-align: center;
    padding: 20px;
}

.loader.hidden {
    display: none;
}

/* Niveles */
.niveles-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nivel-option {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nivel-option:hover:not(.disabled) {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

.nivel-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.nivel-option.selected {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.nivel-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px;
    margin: 0;
    cursor: inherit;
    flex-wrap: nowrap;
}

.nivel-label input[type="radio"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    cursor: inherit;
}

.nivel-info {
    display: flex;
    flex-direction: column;
}

.nivel-nombre {
    font-weight: 600;
    font-size: 16px;
}

.nivel-estado {
    font-size: 13px;
    margin-top: 3px;
}

.nivel-estado.disponible {
    color: #198754;
}

.nivel-estado.lleno {
    color: #dc3545;
    font-weight: 600;
}

/* Materias preview */
.materias-preview {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.materias-preview.hidden {
    display: none;
}

.materias-preview h5 {
    margin-bottom: 10px;
    font-size: 14px;
    color: #6c757d;
}

.materias-preview ul {
    margin: 0;
    padding-left: 20px;
}

.materias-preview li {
    padding: 3px 0;
}

/* Resumen */
.resumen-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.resumen-card h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.resumen-content {
    display: grid;
    gap: 10px;
}

.resumen-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px dashed #dee2e6;
}

.resumen-label {
    font-weight: 600;
    width: 150px;
    color: #6c757d;
}

.resumen-value {
    flex: 1;
}

.resumen-cursos {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.resumen-cursos h5 {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.resumen-cursos ul {
    margin: 0;
    padding-left: 20px;
}

/* Términos */
.terminos-group {
    margin-top: 20px;
}

.terminos-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.terminos-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.terminos-content {
    margin-top: 10px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    max-height: 150px;
    overflow-y: auto;
    font-size: 13px;
    color: #6c757d;
}

/* Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.form-navigation .btn {
    padding: 12px 30px;
    font-size: 16px;
}

/* Success page */
.inscripcion-exito {
    text-align: center;
    padding: 40px 20px;
}

.inscripcion-exito.hidden {
    display: none;
}

.exito-icon {
    font-size: 80px;
    color: #198754;
    margin-bottom: 20px;
}

.exito-icon i {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.inscripcion-exito h2 {
    color: #198754;
    margin-bottom: 10px;
}

.inscripcion-exito > p {
    color: #6c757d;
    margin-bottom: 30px;
}

.datos-acceso {
    background-color: #fff3cd;
    border: 1px solid #ffecb5;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.datos-acceso h4 {
    margin-bottom: 15px;
    color: #664d03;
}

.acceso-info {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.acceso-info p {
    margin: 5px 0;
    font-size: 16px;
}

.acceso-info span {
    font-family: monospace;
    font-size: 18px;
    background-color: #f8f9fa;
    padding: 2px 8px;
    border-radius: 4px;
}

.warning-password {
    color: #856404;
    font-size: 13px;
    margin: 0;
}

.warning-password i {
    margin-right: 5px;
}

.exito-cursos {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
}

.exito-cursos h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.exito-cursos ul {
    background-color: #f8f9fa;
    padding: 15px 15px 15px 35px;
    border-radius: 8px;
    margin: 0;
}

.exito-cursos li {
    padding: 5px 0;
}

/* Admin styles */
.inscribete-admin .card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.inscribete-admin .card-header h5 {
    margin: 0;
}

.inscribete-admin .table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.inscribete-admin .badge {
    font-size: 12px;
    padding: 5px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .inscribete-progress {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .progress-step .step-label {
        font-size: 10px;
        max-width: 60px;
    }

    .progress-step .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .dni-group .input-group {
        flex-direction: column;
    }

    .dni-group .form-control {
        width: 100%;
        font-size: 16px;
        padding: 12px 15px;
        letter-spacing: 3px;
    }

    .dni-group .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    /* Ajustar container en móvil */
    .inscribete-container {
        padding: 10px;
        margin: 0;
        max-width: 100%;
    }

    .form-step h3 {
        font-size: 18px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .form-navigation .btn {
        width: 100%;
    }

    .resumen-row {
        flex-direction: column;
    }

    .resumen-label {
        width: 100%;
        margin-bottom: 3px;
    }

    .inscribete-admin .table-responsive {
        font-size: 14px;
    }
}

/* Responsive extra pequeño (móviles pequeños) */
@media (max-width: 480px) {
    .inscribete-progress-wrapper {
        padding-top: 60px;
    }

    .sapo-mascota {
        width: 50px;
        height: 50px;
    }

    .progress-step .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .progress-step .step-label {
        font-size: 9px;
        max-width: 50px;
    }

    .progress-line {
        margin: 0 5px;
        margin-top: 0; /* En móvil, la línea al centro del número */
    }

    .dni-group .form-control {
        font-size: 18px;
        padding: 14px 10px;
        letter-spacing: 4px;
    }

    .form-step h3 {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
    }
}

/* Row para grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-3, .col-md-4, .col-md-6, .col-md-12 {
    padding: 0 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-12 { width: 100%; }
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Validación de campos - Opción 1: Borde rojo + mensaje */
.form-control.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-control.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 5px;
    font-size: 13px;
    color: #dc3545;
}

.form-control.is-invalid + .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback,
.is-invalid + .invalid-feedback,
.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-group.has-error .form-control {
    border-color: #dc3545 !important;
}

.form-group.has-error .invalid-feedback {
    display: block;
}

/* Animación de shake para campos inválidos */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-control.shake {
    animation: shake 0.3s ease;
}

/* Select inválido */
select.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Nivel option inválido */
.niveles-container.is-invalid {
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 10px;
}

.niveles-container.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Checkbox términos inválido */
.terminos-group.has-error .terminos-label {
    color: #dc3545;
}

.terminos-group.has-error input[type="checkbox"] {
    outline: 2px solid #dc3545;
}

/* Estilos para checkbox del reglamento */
.reglamento-group {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.reglamento-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 5px;
}

.reglamento-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.reglamento-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.reglamento-group.has-error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.reglamento-group.has-error .reglamento-label {
    color: #dc3545;
}

.reglamento-group .invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Modal del reglamento */
#reglamentoModal .modal-dialog {
    max-width: 900px;
}

#reglamentoModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.pdf-container {
    background-color: #f5f5f5;
    min-height: 400px;
}

.pdf-container iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: none;
}

.scroll-indicator {
    padding: 10px 15px;
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #ffc107;
}

.scroll-indicator.text-success {
    background-color: #d4edda;
    color: #155724;
    border-top-color: #28a745;
}

.scroll-indicator i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    #reglamentoModal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .pdf-container iframe {
        min-height: 350px;
    }

    #reglamentoModal .modal-body {
        max-height: 60vh;
    }
}

/* Estilos para selección de cursos individual */
.cursos-seleccion {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.cursos-seleccion h5 {
    margin-bottom: 10px;
    color: #212529;
    font-size: 16px;
}

.cursos-seleccion h5 i {
    margin-right: 8px;
    color: #0d6efd;
}

.cursos-lista {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.curso-option {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: #fff;
}

.curso-option:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

.curso-option.selected {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

.curso-option.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.curso-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 15px;
    margin: 0;
    cursor: inherit;
    font-weight: normal;
    flex-wrap: nowrap;
}

.curso-label input[type="checkbox"],
.curso-label input[type="radio"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: inherit;
    accent-color: #0d6efd;
    flex-shrink: 0;
    margin-top: 2px;
}

.curso-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.curso-nombre {
    font-weight: 600;
    font-size: 15px;
    color: #212529;
    line-height: 1.4;
}

.curso-detalle {
    font-size: 13px;
    color: #6c757d;
    margin-top: 3px;
    line-height: 1.3;
}

/* Preview de cursos (para tipo paquete o auto-seleccionado) */
.cursos-preview {
    margin-top: 20px;
    padding: 15px;
    background-color: #d1e7dd;
    border-radius: 8px;
    border: 1px solid #badbcc;
}

.cursos-preview h5 {
    margin-bottom: 10px;
    font-size: 14px;
    color: #0f5132;
}

.cursos-preview h5 i {
    margin-right: 8px;
}

.cursos-preview ul {
    margin: 0;
    padding-left: 20px;
}

.cursos-preview li {
    padding: 3px 0;
    color: #0f5132;
}

/* Validación para cursos */
.cursos-seleccion.is-invalid {
    border-color: #dc3545;
}

.cursos-seleccion .invalid-feedback {
    margin-top: 10px;
}

/* Mensaje de límite de cursos */
.cursos-seleccion .text-muted {
    font-size: 14px;
    margin-bottom: 5px;
}

.cursos-seleccion .text-muted strong {
    color: #0d6efd;
}

/* Responsive para cursos */
@media (max-width: 768px) {
    .cursos-seleccion {
        padding: 15px;
    }

    .curso-option {
        padding: 12px;
    }

    .curso-label {
        gap: 10px;
    }

    .curso-nombre {
        font-size: 14px;
    }
}

/* Resumen de cursos seleccionados */
.resumen-cursos-seleccionados {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #dee2e6;
}

.resumen-cursos-seleccionados h5 {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.resumen-cursos-seleccionados ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.resumen-cursos-seleccionados li {
    padding: 5px 0;
    position: relative;
}

.resumen-cursos-seleccionados li::before {
    content: "✓";
    color: #198754;
    font-weight: bold;
    margin-right: 8px;
}

/* Animación para el indicador de scroll del reglamento */
@keyframes pulse-danger {
    0% {
        background-color: #dc3545;
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        background-color: #e4606d;
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        background-color: #dc3545;
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.scroll-indicator {
    border-bottom: 3px solid rgba(0,0,0,0.2);
}

.scroll-indicator.bg-success {
    animation: none !important;
    background-color: #198754 !important;
}

/* Modal de términos - botones en móvil */
@media (max-width: 575.98px) {
    .terminos-footer {
        flex-wrap: wrap;
    }
    .terminos-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .terminos-buttons .btn {
        width: 100%;
    }
}

/* Botón de temas en cursos */
.curso-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.curso-option .btn-temas {
    margin-left: 10px;
    flex-shrink: 0;
}

.curso-option .curso-label {
    flex: 1;
}
