/* Estilos para el checkbox */
.custom-checkbox:checked {
    background-color: #A0A74F;
    /* bamboo-green */
    border-color: #A0A74F;
}

.custom-checkbox {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 2px solid #5F4B32;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    top: 1px;
}

.custom-checkbox:checked:after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Estilos para el botón deshabilitado */
#btn-soy-qtr:disabled {
    background-color: #A0A74F;
    /* bamboo-green */
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Resaltar la sección incompleta o con error */
.section-error {
    box-shadow: 0 0 0 3px #F3C56F, 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}