.row.equal-cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.equal-cols:before,
.row.equal-cols:after {
    display: block;
}

.row.equal-cols>[class*='col-'] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row.equal-cols>[class*='col-']>* {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.btn-site{
    border-radius: 10px;
    border: solid 1px #000;
    outline: none;
}

.line-numbers {
    text-align: right;
    margin-right: 10px;
    color: #888;
    user-select: none;
}

#codeArea {
    height: 200px;
    line-height: normal;
    font-family: monospace;
}

.consoleStyle {
    background-color: rgb(72, 72, 72);
    color: limegreen;
    font-family: 'Courier New', monospace;
    padding: 10px;
    border: none;
    border-radius: 5px;
    resize: none;
    /* Opcional: evita que el usuario cambie el tamaño */
}

.CodeMirror {
    width: 100% !important;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}