.config-card {
    font-family: Arial, sans-serif;
    /* background: #f2f2f2; */
}

.config-card {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.config-card h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.columns {
    display: flex;
    /* gap: 20px; */
    margin-bottom: 20px;
    background-color: #f9f9f9;

}

.column {
    flex: 1;
    border: 1px solid #dedede;
    padding: 20px;
}

.config-card h3 {
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 600;
}

.intransitive {
    color: #2ecc71;
}

.transitive {
    color: #e74c3c;
}

.small {
    font-size: 12px;
    color: #777;
    margin: 10px 0 5px;
}

.config-card .checkbox-label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-label:has(input:disabled) {
    color: #999;
}

.times {
    margin-bottom: 20px;
}

.stepper .btn {
    background: #2ecc71;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
}

/*input checkbox*/
.config-card input[type="checkbox"]:focus {
    outline: none;
    box-shadow: none;
}

.config-card input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: none;
}

.stepper input[type="radio"]:focus {
    outline: none;
    box-shadow: none;
}

.stepper input[type="radio"]:focus-visible {
    outline: none;
    box-shadow: none;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 10px;
}

/**
* steps
*/

/* Barra base */
.progress-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.progress-line {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #2ecc71;
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Círculos */
.progress-steps {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background 0.3s;
}

.step-circle.active {
    background: #2ecc71;
}

.step-circle.completed {
    background: #2ecc71;
}

/* Contenido */
.step-content {
    display: none;
}

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

.config-card .radio-container {
    margin: 20px 0;
}

.config-card .radio-container label {
    font-size: 13px;
    margin-bottom: 4px;
}

#conjugation-app div:first-child {
    font-size: 14px;
}

/* conjugation table */
#conjugation-app table {
    width: 100%;
    font-size: 16px;
}

#conjugation-app .table-wrapper {
    border: 1px solid #27ae60;
    border-radius: 3px;
    overflow: hidden;
    /* clave */
}

#conjugation-app td,
#conjugation-app th {
    border: 1px solid #27ae60;
}

/* agregar padding first*/
#conjugation-app td:nth-child(1) {
    padding-left: 10px;
}

/* quitar el borde entre columna 2 y 3 */
#conjugation-app td:nth-child(2) {
    border-right: none;
}

#conjugation-app td:nth-child(3) {
    border-left: none;
    min-width: 22px;
}

#conjugation-app td:nth-child(3) {
    width: 0;
}

/* eliminar borde exterior */
#conjugation-apptr:first-child th,
#conjugation-app tr:first-child td {
    border-top: none;
}

#conjugation-app tr:last-child td {
    border-bottom: none;
}

#conjugation-app tr td:first-child,
#conjugation-app tr th:first-child {
    border-left: none;
}

#conjugation-app tr td:last-child,
#conjugation-app tr th:last-child {
    border-right: none;
}


/* conjugation inputs*/
#conjugation-app input {
    padding: 5px 10px;
    border: none;
    width: 100%;
    box-sizing: border-box;

}

#conjugation-app tr input {
    background-color: transparent;
}

#conjugation-app tr.default {
    background-color: #FFFF;
}

#conjugation-app tr.learned {
    background-color: #ee9520;
}

#conjugation-app tr.learned input {
    background-color: #ffd297;
}

#conjugation-app tr.good {
    background-color: #5aee2e;
}

#conjugation-app tr.good input {
    background-color: #aef598;
}

#conjugation-app tr.wrong {
    background-color: #f83333;
}

#conjugation-app tr.wrong input {
    background-color: #ffadad;
}

#conjugation-app table button {
    border: none;
    background: transparent;
    font-weight: 600;
}

#conjugation-app table button:focus {
    border: none;
    outline: none;
}


#conjugation-app input:focus-visible {
    outline: none;
    box-shadow: none;


}

.conjugation-head {
    text-transform: capitalize;
    font-weight: 500;
}

/**progress bar */
.progress-conjugation {
    margin: 0 auto;
    width: 80%;
    box-sizing: border-box;
    position: relative;
    font-size: 16px;
    height: 30px;
    background-color: #FFFF;
    overflow: hidden;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .4);
}

.progress-conjugation .progress-bar {
    height: 100%;
    background-color: #6bcf3c;
    width: 0%;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
}

.progress-conjugation #progressText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
