@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff&family=Funnel+Display:wght@300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*NOTA IMPORTANTE::
    Muchas etiquetas no son utilizadas por los archivos 
    que usan esta hoja CSS.
*/

[data-theme="light"]{
    --primary: #21262b;
    --secundary:#3B5D69;
    --fondo: #cdffe6;
    --texto: black;
}

[data-theme="dark"]{
    --primary: #d7ffec;
    --secundary:#2e3a46;
    --fondo: #242424;
    --texto: white;
}

html{
    height: min-content;
}

body {
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    background-color: var(--fondo);
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Estilo scroll*/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #00000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #446859, #35815f);
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #35815f, #446859);
    border: 2px solid transparent;
    background-clip: content-box;
}

/*Barra de navegación*/
.navbar{
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    border-radius: 60px;
    height: 60px;
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    box-shadow: 0 5px 10px rgba(31, 31, 31, 0.486);
    z-index: 1000;
}
.logo{
    height: 30px;
}
.logo_nombre{
    height: 20px;
    margin-left: 5px;
}
@media screen and (max-width: 500px){
    .logo_nombre{
        display: none;
    }
}
#admin{
    position: relative;
    right: 0px;
}
#viewQuiz{
    background-color: #00000000;
    color:white;
    border: 0;
}

#user{
    height: 45px;
    width: 45px;
    border-radius: 45px;
    cursor: pointer;
}

.MainContainer{
    margin-top: 115px;
}

.quiz-container {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(145deg,#202020,#272727);
    /*box-shadow: 17px 17px 33px #1a1a1a, -17px -17px 33px #2e2e2e;*/
    color: white;
    padding: 50px;
    margin-top: 20px;
    margin-bottom: 30px;
}
#QuizFondo{
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-image: url("img/portadaPrim.avif");
    border-radius: 15px;
    opacity: 0.1; /* Opacidad */
    z-index: 0;
}

#QuizInfo{
    position: relative;
    z-index: 1;
    color: white;
}
.btnShare_container{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.btnShare_container button{
    font-size: 25pt;
    border: 0;
    background-color: #00000000;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.5s ease;
}
#isSharedCheck{
    animation: flipCoin 4s ease-in-out infinite;
    transform-style: preserve-3d;
}
@keyframes flipCoin {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
#linkShare{
    font-size: 20pt;
}
#linkShare:hover{
    color: white;
}
.btnYES{
    background-color: #358163;
    border-radius: 25px;
    color: white;
    padding: 10px;
    transition: all 0.5s ease;
}
.btnYES:hover, .btnYES:focus{
    background-color: #56a786;
    color: white;
}

.btnNOT{
    background-color: #e74444;
    border-radius: 25px;
    color: white;
    padding: 10px;
    transition: all 0.5s ease;
}
.btnNOT:hover, .btnNOT:focus{
    background-color: #f35858;
    color: white;
}

#link_share,#link_share:focus{
    cursor:text;
    color: #c8b5ec;
    background-color: #00000000;
    border-color: rgb(54, 54, 54);
    border-radius: 25px;
}
#link_share:focus{
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0);
}

.latexPreviewEnun{
    padding: 20px;
    min-height: 50px;
    border-radius: 15px;
    color: white;
    background: linear-gradient(145deg,#2e3a46c9,#44685981);
}

.latexPreviewAsoc{
    padding: 10px;
    text-align: center;
    min-height: 50px;
    height: min-content;
    border-radius: 15px;
    color: white;
    background: linear-gradient(145deg,#2e3a463b,#4468593a);
}

.checkOpt{
    height: 40px;
    width: 40px;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 30px !important;
}
.inpOpt{
    border-radius: 30px !important;
    margin-left: 10px !important;
}
.latexPreviewOpt{
    border: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 10px;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 30px !important;
    justify-content: center;
    background: linear-gradient(145deg,#2e3a463b,#4468593a);
    min-height: 50px;
}

.btnsMasMenosOpts{
    text-align: center;
}
.btnsMasMenosOpts button{
    width: 100px;
    height: 45px;
    padding: 0;
    border: 2px solid rgb(54, 54, 54);
    border-radius: 40px;
    background-color: #00000000;
    font-size: 15pt;
    font-weight: bolder;
    color: rgb(110, 110, 110);
    transition: all ease 0.7s;
}
.btnsMasMenosOpts button:hover{
    color: rgb(196, 196, 196);
    border-color: rgb(196, 196, 196);
}

#admin{
    position: relative;
    right: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    gap: 5px;
}
#userPhoto{
    height: 45px;
    width: 45px;
    border-radius: 45px;
    cursor: pointer;
}
#btnIA_quiz{
    padding: 10px;
    font-size: 10pt;
    font-weight: bolder;
    width: max-content;
    margin: 0;
    background: linear-gradient(145deg,#575050,#52486b);
    border:none;
    color: #ffffff;
    border-radius:15px;
    transition: all 0.5s ease-in-out;
    animation: pulse 0.6s infinite alternate;
}
@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
#btnIA_quiz:hover,#btnIA_quiz:focus{
    animation: none;
    box-shadow: -3px 2px 0 black;
    background: #00000000;
    background-color: rgba(37, 37, 37, 0.562);
    border: 2px solid #2c3238;
    color: white;
}
#btnSaveQuiz{
    padding: 10px;
    font-size: 10pt;
    margin: 0;
    background-color: rgba(37, 37, 37, 0);
    border-color: #2c3238;
    border-width: 2px;
    color: #2c3238;
    border-radius:20px;
    transition: 0.5s ease;
    
}
#btnSaveQuiz:hover{
    box-shadow: -3px 2px 0 black;
    background-color: rgba(37, 37, 37, 0.562);
    border-color: #2c3238;
    color: white;
}

#savedCheck{
    font-size: 20pt;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    margin-right: 5px;
}
#quizDescription_GenerateQuizIA,#quizGrade_GenerateQuizIA,#quiz_tema_GenerateQuizIA,
#CantPreguntas_GenerateQuizIA, #dificultad_GenerateQuizIA, #TiempoEstimado_GenerateQuizIA,
#quizTitle,#quizGrade, #quiz_tema,#quizDescription,#TiempoEstimado{
    background-color: #00000000;
    border: 0;
    border-bottom: 1px solid rgb(66, 66, 66);
    border-radius: 0px;
    color: #cac1e1;
    transition: 0.5s ease;
}
#TiempoEstimado,#TiempoEstimado_GenerateQuizIA{
    width: 20%;
}
#quizDescription,#quizDescription_GenerateQuizIA{
    height: 100px;
}
#quizDescription_GenerateQuizIA:focus, #TiempoEstimado_GenerateQuizIA:focus,
#quizTitle:focus,#quizDescription:focus, #TiempoEstimado:focus{
    color: white;
    border-color: white;
    box-shadow: 0 2px 10px rgba(83, 83, 83, 0);
}
#quizGrade:focus, #quiz_tema:focus{
    color: white;
    background-color: #242424;
    border-color: white;
    box-shadow: 0 2px 10px rgba(83, 83, 83, 0);
}
.btnNewQuestion{
    padding: 20px;
    border-radius: 100px;
    background-color: #358163;
    color: black;
    font-size: 12pt;
    border: 3px solid black;
    box-shadow: -10px 10px 0 rgba(0, 0, 0, 0.25);
    transition: 0.5s ease;
}
.btnNewQuestion:hover{
    background-color: #36a378;
    box-shadow: -10px 10px 0 black;
}
#questionContainer{
    padding: 30px;
}
.question-card{
    border-radius: 20px;
    background: #242424;
    box-shadow: inset 10px 10px 20px #191919, inset -10px -10px 20px #2f2f2f;
    color:white;
    padding: 50px;
}
.question-card .form-control,.question-card .form-select{
    background-color: #19191900;
    border: rgb(66, 66, 66) solid 1px;
    border-radius: 20px;
    color: #cac1e1;
    transition: 0.5s ease;
}
.question-card .form-control:focus{
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0.267);
}
.question-card .form-select:focus{
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0.267);
    background-color: #242424;
    color: white;
}
.question-card .input-group-text{
    background-color: #19191900;
    color: rgb(197, 197, 197);
    border: rgb(66, 66, 66) solid 1px;
    border-radius: 20px;
}
.question-card .form-check-input{
    background-color: #19191900;
    border: 0;
    border-radius: 0;
    height: 100%;
}
.question-card .form-check-input:focus{
    box-shadow: 0 1px 5px rgba(255, 255, 255, 0);
}
.question-card .form-control::placeholder{
    color: rgb(66, 66, 66);
}
.question-card .enunciado{
    height: 100px;
}
.btnLatex{
    position: absolute;
    top: 7px;
    right: 10px;
    z-index: 500;

    width: max-content;
    height: max-content;
    padding: 3px;
    color: rgba(0, 0, 0, 0.733);
    font-weight: bolder;
    font-size: 9pt;
    text-align: center;
    background-color: #ffffff6c;
    border-radius: 5px;
    
    justify-content: center;
    cursor: pointer;
    transition: all ease 0.5s;
}
.btnLatex:hover{
    background-color: #ffffffb7;
}
.question-card hr{
    opacity: 1;
    color: #358163;
    border-width: 2px;
    border-radius: 30px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.containerGenerate{
    display: flex;
    justify-content: flex-end; /* Alinea contenido a la derecha */
    align-items: center;
    height: 100%;
    padding: 0;   /* en lugar de auto */
    text-align: right;
}
.btnGenerateAI{
    height: 100%;
    width: max-content;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bolder;
    background:#00000000;
    transition: all ease 0.5s;
}
.btnGenerateAI:hover{
    box-shadow: 5px 10px 0 rgba(0, 0, 0, 0.7);
    border-color: white;
    color: white;
}

.spinner{
    border: 2px solid #474747;
    border-top: 2px solid #356857;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  
.question-card .puntajeContainer{
    padding: 0;
    background-color: #19191900;
    color: white;
}
.question-card .puntajeContainer .input-group input{
    text-align: center;
    font-size: 14pt;
    font-weight: bolder;
}

@media screen and (max-width: 499px) {
    .Container_title_btnIA{
        display: flex;
        flex-direction: column;
    }
    .titleQuestion{
        width: max-content;
        font-size: 12pt;
    } 
    .containerGenerate{
        width: max-content;
        margin-top: 15px;
    }
    .question-card .puntajeContainer .input-group{
        display: flex;
        flex-direction: column;
    }
    .question-card .puntajeContainer .input-group input{
        width: 100%;
        border-radius: 15px !important;
        font-size: 12pt;
    }
    .question-card .puntajeContainer .input-group span{
        width: 100%;
        margin: 0;
        padding: 0;
        padding-right: 15px;
        border: none;
        font-size: 10pt;
        justify-content: flex-end;
    }
    .btnGenerateAI{
        font-size: 3pt;
    }
}

.containerBtnResourse{
    text-align: center;
}
.btnAddGrapImg{
    width: 500px;
    height: 40px;
    border-radius: 50px;
    border:0;
    padding: 10px;
    font-size: 10pt;
    color: rgb(255, 255, 255);
    background: linear-gradient(to left,#2f253dc0,#47358a63,#513d70af);
    transition: 0.5s ease;
}

.btnRemoveGrapImg{
    width: 500px;
    height: 40px;
    border-radius: 50px;
    border:0;
    padding: 10px;
    font-size: 10pt;
    color: rgb(255, 255, 255);
    background: linear-gradient(to left,#272529,#4b4a509f,#5f5f5f);
    transition: 0.5s ease;
}
.btnAddGrapImg:hover{
    box-shadow: 1px 5px 0 rgba(0, 0, 0, 0.39);
}
.btnRemoveGrapImg:hover{
    box-shadow: 1px 5px 0 rgba(0, 0, 0, 0.39);
}
.graph-container .form-control[type="text"], .graph-container label{
    font-size: 12pt;
}
.graph-container .form-control[type="text"]{
    border:0;
    border-bottom: 1px rgb(66, 66, 66) solid;
    border-radius: 0;
}
.graph-container .form-control[type="text"]:focus{
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
.divImg{
    text-align: center;
    margin-top: 20px;
}

.custom-file-input {
    position: relative;
    display: inline-block;
}

.file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border: 2px solid #446859;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
}

.file-label i {
    font-size: 1.2em;
    color: #446859;
}

.uploaded-image {
    max-width: 100%;
    height: 350px;
    border-radius: 15px;
    margin-top: 10px;
}

.image-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.image-controls button{
    transition: all 0.5s ease;
}

.image-controls button i{
    margin-right: 5px;
}

.image-controls button:hover, .image-controls .custom-file-input input:hover{
    background-color: #8585851f;
}

.or-divider {
    color: #666;
    font-size: 0.9em;
}
.image-gallery {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(145deg, #202020, #272727);
    border-radius: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.gallery-item {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(0.95);
}

.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.image-info {
    padding: 8px;
    font-size: 0.8em;
}

.trashImgGalery{
    color: #8a8a8a7e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trashImgGalery:hover{
    color: #bbbbbbc5;
}

.image-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image-date {
    color: #7a7a7a;
}

.loader, .no-images {
    text-align: center;
    padding: 20px;
    color: #7a7a7a;
}

.colGrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btnGenerate,.btnGG{
    border-radius: 50px;
    border: 0;
    padding: 10px;
    font-size: 10pt;
    margin-top: auto;
    margin-bottom: auto;
    background: linear-gradient(to left,#2f253dc0,#47358a63,#513d70af);
    transition: 0.5s ease;
    min-width: 200px;
}
.btnGenerate:hover,.btnGG:hover{
    box-shadow: 1px 5px 0 rgba(0, 0, 0, 0.39);
}
.InputGG{
    color: rgb(172, 172, 172);
    font-size: 11pt;
}
.btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
}
.btn-primary:hover {
    background-color: #3a7bd5;
    border-color: #3a7bd5;
}
[id^="questionOptions"] {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}
.association-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}
.association-table tbody tr td input {
    max-width: 100%;
}
.buttonsQuiz{
    text-align: right;
}
.delete{
    padding: 7px;
    background-color: #1a1a1a00;
    color: rgb(90, 90, 90);
    border: 0;
    transition: 0.5s ease;
    font-size: 15pt;
}
.delete:hover{
    color: rgb(194, 194, 194);
}
@keyframes appear{
    0%{
        opacity: 0;
        font-size: 0;
    }100%{
        opacity: 1;
        font-size: 10pt;
    }
}
@keyframes disappear{
    0%{
        opacity: 1;
        font-size: 10pt;
    }100%{
        opacity: 0;
        font-size: 0;
    }
}
@media screen and (max-width: 1200px) {
    .btnAddGrapImg,.btnRemoveGrapImg,.btnGG{
        width: 100%;
    }
    #questionContainer{
        padding: 10px;
    }
    .quiz-container{
        padding: 20px;
        margin-top: 0;
    }
    .question-card{
        padding: 30px;
    }
    .uploaded-image{
        max-width: 90%;
        height: 250px;
    }
}

@media screen and (max-width: 700px){
    .image-controls button i{
        margin: 0;
    }
    .image-controls button span{
        display: none;
    }
    .custom-file-input label, .image-controls button{
        border: 0;
        padding: 0;
    }
    .custom-file-input label span{
        display: none;
    }
    .btnGenerateAI{
        font-size: 10pt;
    }
}


/*  --- RANKING ---*/
.ranking-container {
    max-width: 800px;
    max-height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 3px;
    padding-left: 40px;
    padding-bottom: 10px;
    margin: 0 auto;
}

.ranking-item{
    position: relative;
}
.ranking-item[data-tipo="grupo"] {
    background: linear-gradient(145deg,#1e3a2d,#2a4d3d);
    border-left: 4px solid #35815f;
}

.ranking-item .DeletePartic{
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 8pt;
    color: #b3b3b3;
    cursor: pointer;
}

#infoPartic{
    padding: 20px;
    max-height: 200px;
    overflow-y: scroll;
    border: 1px solid rgba(255, 255, 255, 0.199);
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}
#infoPartic h4{
    margin: 0;
}
#infoPartic ul{
    margin-bottom: 0;
    font-size: 10pt;
    list-style: none;
    margin-top: 10px;
    padding-left: 15px;
}

.listGroup{
    font-size: 9pt;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 15px;
    color: #a0c9b6;
}

.listGroup  li {
    list-style: none;
}

li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f007";
    font-weight: 400;
    margin-right: 5px;
}

.ranking-item, .Top3 {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Top3{
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
}

.menciones{
    font-size: 10pt;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    color: rgb(129, 129, 129);
}

.ranking-position {
    font-size: 1.5rem;
    font-weight: bold;
    color: #358163;
    width: 40px;
    text-align: center;
}

.participant-info {
    flex-grow: 1;
    padding: 0 1rem;
    cursor: pointer;
}

.score-info {
    font-size: 10pt;
    text-align: center;
    background-color: #3333337e;
    padding: 15px;
    border-radius: 15px;
}

.score-info-puntaje{
    font-size: 10pt;
    text-align: center;
    padding: 15px;
    color: #949494;
    transition: all 0.3s ease;
}

.score-info-puntaje h4 small{
    font-size: 10pt;
}

.control-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 4000;
}

.control-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pause-button {
    background: linear-gradient(145deg, #886c2475, #3d3636,#886c2475);
    color: white;
    border: 3px solid #886c24d3;
    box-shadow: -10px 10px 0 rgb(20, 20, 20);
}

#pauseContainer, #Regresion {
    position: fixed;
    background-color: rgba(31, 27, 27, 0.945);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  /* Añadir esta línea */
    text-align: center;
    font-size: 70pt;
    min-height: 100vh;
    z-index: 3000;
}

#Regresion{
    font-size: 150pt;
    font-weight: bolder;
    z-index: 6000;
}

@keyframes countdownAnimation {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    20% {
        transform: scale(1.5);
        opacity: 1;
    }
    80% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.countdown-number {
    animation: countdownAnimation 1s ease-in-out;
}

.end-button {
    background: linear-gradient(145deg, #91362483, #3d3636,#91362483);
    border: 3px solid #8b4234e0;
    box-shadow: -10px 10px 0 rgb(20, 20, 20);
    color: white;
}

#continueQuestion{
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    color: white;
    border: 2px solid black;
    box-shadow: -10px 10px 0 rgb(20, 20, 20);
}

.time-display {
    position: fixed;
    top: 0rem;
    right: 1rem;
    background: linear-gradient(145deg,#3d3636,#52486b);
    padding: 1rem;
    border-radius: 0px 0 10px 10px;
    color: white;
    font-size: 12pt;
    padding-top: 25px;
    z-index: 4000;
}
#tiempoTarea{
    font-size: 10pt;
    text-align: center;
    padding: 10px;
}
.FechaFinal_input{
    background-color: #00000000;
    color: white;
    text-align: center;
    border: 1px rgba(255, 255, 255, 0.199) solid;
    border-radius: 15px;
    padding: 5px;
}
.code-display {
    position: fixed;
    top: 0rem;
    left: 1rem;
    background: linear-gradient(145deg,#3d3636,#52486b);
    padding: 1rem;
    border-radius: 0px 0 10px 10px;
    color: white;
    font-size: 12pt;
    padding-top: 25px;
    z-index: 4000;
    word-break: break-all;
}
.confBar{
    position: fixed;
    top: 130px;
    left: 30px;
    display: flex;
    flex-direction: column;
    z-index: 5500;
}
.confBar div{
    font-size: 20pt;
    margin-bottom: 20px;
    background: linear-gradient(145deg,#3d3636,#52486b);
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    max-width: max-content;
    cursor: pointer;
}

.title-display, .title-result {
    position: fixed;
    width: 60%;
    top: 10px;
    left: 20%;
    background: linear-gradient(145deg,#3d3636,#52486b);
    padding: 1rem;
    border-radius:50px;
    color: white;
    font-size: 22pt;
    text-align: center;
    z-index: 2000;
}
.title-smallscreem{
    display: none;
}

#editMaxIntentos{
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #ffffff79;
    cursor: pointer;
    transition: all 0.5s ease;
}

#editMaxIntentos:hover{
    color: #ffffff;
}

#Modal_EditMaxIntentos{
    padding: 20px;
}

.closeModal{
    position: absolute;
    top: 5px;
    right: 10px;
    color: #ffffff3f;
    font-size: 30pt;
    cursor: pointer;
    transition: all 0.5s ease;
}
.closeModal:hover{
    color: #ffffff79;
}

#Modal_EditMaxIntentos .modal-content{
    border: 2px solid #52486b;
}

#Modal_EditMaxIntentos .modal-content h4 i{
    color: #ffffff79;
    font-size: 25pt;
}

#IntentosMaximos{
    margin-bottom: 15px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #52486b;
    background-color: #00000000;
    color: #52486b;
    font-weight: bolder;
    font-size: 20pt;
    min-width: 100px;
    min-height: 50px;
}

#code, #timeElapsed, #tiempoTarea span{
    font-size: 18pt;
    font-weight: bolder;
    margin-left: 5px;
}

@media screen and (max-width: 700px) {
    .code-display{
        padding: 15px;
    }
    .code-display, #code, #timeElapsed, #tiempoTarea span {
        font-size: 8pt;
    }
}

.group-header {
    color: white;
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid #358163;
}

.infoParticipant{
    position: relative;
    max-width: 50%;
    top: 0;
    right: 100px;
}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: linear-gradient(145deg,#202020,#272727);
    padding: 25px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modalContent-revision{
    background: linear-gradient(145deg,#202020,#272727);
    padding: 25px;
    border-radius: 10px;
    max-width: 95%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content h4 {
    color: #fff;
    margin-bottom: 15px;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cancel-btn {
    padding: 10px;
    font-size: 14pt;
    margin: 0;
    background-color: rgba(37, 37, 37, 0);
    border: 1px solid #b8b1b0d7;
    border-width: 2px;
    color: #b8b1b0d7;
    border-radius:20px;
    transition: 0.5s all;
}

.cancel-btn:hover {
    box-shadow: -7px 2px 0 rgba(0, 0, 0, 0.555);
    background: linear-gradient(145deg,#e4745d00,#b8b1b08c);
    color: white;
}

.confirm-btn {
    padding: 10px;
    font-size: 14pt;
    margin: 0;
    background-color: rgba(37, 37, 37, 0);
    border: 1px solid #d4b0a9d7;
    border-width: 2px;
    color: #d4b0a9d7;
    border-radius:20px;
    transition: 0.5s all;
}

.confirm-btn:hover {
    box-shadow: 7px 2px 0 rgba(0, 0, 0, 0.555);
    background: linear-gradient(145deg,#e4745d6c,#e4735dd7);
    color: white;
}

.modalQuest .modal-content-question{
    overflow-y: scroll;
    background: linear-gradient(145deg,#202020,#272727);
    border: 3px solid #52486b;
    padding: 50px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
}

.modalQuest .modal-content-question h3{
    font-weight: bolder;
    color: white;
    margin-bottom: 20px;
}

.modalQuest .modal-content-question h3 span{
    font-size: 15pt;
    color: #9386b3;
}

.modalQuest .modal-content-question .Enunciado{
    padding: 20px;
    min-height: 100px;
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    border: 2px solid black;
    border-radius: 20px;
    box-shadow: -10px 10px 0 rgb(20, 20, 20);
    color: white;
    text-align: left;
}

.modalQuest .modal-content-question .recursos{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
[id^="geogebra-applet-"] {
    max-width: 350px;
    max-height: 350px;
    width: 100%;
    height: 100vh;
    text-align: center;
    margin: 0 auto;
}
/* Contenedor principal */
.GeoGebraFrame {
    border-radius: 10px !important;
    background: linear-gradient(145deg, #202020, #272727) !important;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.356) !important;
}

/* Canvas de GeoGebra */
.GeoGebraFrame canvas {
    border-radius: 8px !important;
    background-color: rgb(211, 211, 211) !important;
}

/* Panel euclidiano */
.EuclidianPanel {
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* Para los botones y controles */
.GeoGebraFrame button,
.GeoGebraFrame .gwt-Button {
    border-radius: 50% !important;
    background: #446859 !important;
    color: white !important;
    border: none !important;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.356) !important;
    transition: all 0.5s ease !important;
}

.GeoGebraFrame button:hover,
.GeoGebraFrame .gwt-Button:hover {
    background: #35815f !important;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.774) !important;
}

/* Panel de zoom */
.zoomPanel {
    background: rgba(53, 129, 95, 0.1) !important;
    border-radius: 4px !important;
    padding: 2px !important;
}
.imgQuestion{
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
}
#canvaGraph{
    min-width: 400px;
    min-height: 400px;
    max-width: 500px;
    max-height: 500px;
}

.modalQuest .modal-content-question .optionsQuestion{
    margin-top: 20px;
    padding: 50px;
}

.modalQuest .modal-content-question .divInput{
    margin-top: 20px;
    text-align: center;
    align-items: center;
    width: 100%;
}

.modalQuest .modal-content-question .divInput .inputFalseQuestion{
    width: 110px;
    padding: 10px;
    background-color: #00000000;
    color: #4d4d4d;
    border: 1px solid #4d4d4d;
    border-radius: 15px;
}

.modalQuest .modal-content-question .optionsQuestion .opt{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px;
    background: linear-gradient(to right,#2e3a46,#4468596e,#51b88f49);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.modalQuest .modal-content-question .optionsQuestion .cantAssoc{
    color: #747474;
    font-size: 20pt;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/*Respuestas cortas*/
.respuestas-container {
    border: 1px solid #4d4d4d;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    margin-top: 10px;
    margin-left: 10%;
    margin-right: 10%;
    justify-content: center;
    align-items: center;
}

.respuesta-item {
    padding: 5px;
    font-weight: bolder;
    color: white;
    transition: all 0.3s ease;
    color: #887da5;
}

.respuesta-item.correcta {
    color: #70b99c;
}

.info_shortAnswer{
    padding: 0;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    font-size: 9pt;
    color: rgb(117, 117, 117);
}

@media screen and (max-width: 1200px) {
    .MainContainer{
        margin-top: 10vh;
    }
    .title-smallscreem {
        display: block;
        background: linear-gradient(145deg,#3d3636,#52486b);
        padding: 1rem;
        border-radius:20px;
        color: white;
        font-size: 15pt;
        text-align: center;
        margin: 0 40px 20px 40px;
    }
    #editMaxIntentos_SmallScreem{
        position: relative;
        top:0;
        right: 0;
        color: #ffffff79;
    }
    .ranking-container{
        padding-left: 20px;
    }
    .infoParticipant{
        display: none;
    }
    .title-display {
        position: block;
        display: none;
    }
    .score-info{
        padding: 10px;
        border-radius: 12px;
    }
    .score-info-puntaje{
        padding: 5px;
        
    }
    .score-info h4,.score-info-puntaje h4{
        font-size: 10pt;
    }
    .score-info small,.score-info-puntaje small{
        font-size: 7pt;
    }
    .modalQuest .modal-content-question .optionsQuestion{
        padding-left: 10px;
        padding-right: 10px;
    }
    .modalQuest .modal-content-question .optionsQuestion .cantAssoc{
        font-size: 12pt;
    }
    .respuestas-container{
        margin-left: 2px;
        margin-right: 2px;
        padding-left: 2px;
        padding-right: 2px;
    }
    .confBar{
        top: 100px;
        left: 1%;
    }
    .confBar div{
        font-size: 12pt;
        margin-bottom: 20px;
        background: linear-gradient(145deg,#3d3636,#52486b);
        padding: 10px 15px;
        border-radius: 50%;
        cursor: pointer;
    }
}
@media screen and (max-width: 400px) {
    .ranking-container{
        padding-left: 15px;
    }
}

/*Botones de view Question Modal*/
.view_correct{
    position: fixed;
    bottom: 70px;
    left: 10%;
    z-index: 1000;

    border: 0;
    font-size: 15pt;
    background-color: #00000000;
    color: white;
    cursor: pointer;
}

.navigation-buttons {
    position: fixed;
    bottom: 70px;
    right: 10%;
    z-index: 1000;
    display: flex;
    gap: 1rem;
}

.nav-button {
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media screen and (max-width: 700px) {
    .navigation-buttons button{
        font-size: 0pt;
    }
    .navigation-buttons button i{
        font-size: 10pt;
    }
}

.nav-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.nav-button:disabled {
    background: #2e3a46;
    opacity: 0.7;
    cursor: not-allowed;
}


/* QUIZ WAIT */
#codeDisplay{
    position: relative;
    background: linear-gradient(to top,#3d363600,#52486baf);
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
    width: 100%;
    color: white;
    font-size: 34pt;
    font-weight: bolder;
    padding-top: 25px;
    margin: 20px;
}
#FondoQuizWait{
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    height: 150%;
    border-radius: 15px 15px 0 0;
    opacity: 0.07; /* Opacidad */
    z-index: 0;
}

#codeDisplay p{
    font-size:18pt;
    margin-bottom: 0;
    font-weight: normal;
}

#codeDisplay #codeQuiz{
    font-size: 30pt;
    font-weight: bolder;
}

#codeDisplay .btnShareAct{
    max-height: max-content;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
#codeDisplay .btnShareAct button{
    cursor: pointer;
    font-size: 15pt;
    border: none;
    background-color: #00000000;
    color: rgba(255, 255, 255, 0.534);
    transition: all ease 0.5s;
    z-index: 1000;
}
#codeDisplay .btnShareAct button:hover{
    color: white;
}

#codeDisplay .status-info{
    font-size: 14pt;
    font-weight: normal;
}

#codeDisplay .status-info p{
    font-size: 14pt;
    font-weight: normal;
}

.participant-list {
    max-height: 500px;
    overflow-y: auto;
    background: linear-gradient(to top,#35816352,#2e3a468a,#44685900);
    border-radius: 0 0 20px 20px;
    padding: 1rem;
    margin: 1rem 0;
}

.group-container {
    border-left: 3px solid #358163;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.participant-item {
    background: linear-gradient(145deg,#202020,#272727);
    margin-bottom: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 0.3s ease;
    color: white;
}

.btnQuitarPartic{
    background-color: #19191900;
    color: #cac1e1a1;
    border: 0;
    margin-right: 10px;
    font-size: 10pt;
}

.play-button, #validateCode, #registerParticipants{
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.play-button:hover:not(:disabled), #validateCode:hover, #registerParticipants:hover{
    transform: translateY(-2px);
    box-shadow: -7px 2px 0 rgba(0, 0, 0, 0.555);
}

.play-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Quiz Code */
.code-input {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    border-radius: 40px;
    border: 3px solid #358163;
    color: #358163;
    background-color: #00000000;
    width: 100%;
    height: 70px;
}

.code-input:focus{
    color: #358163;
    border: 3px solid #358163;
    box-shadow: 0 0 0 #00000000;
}

.participants-container {
    display: none;
    transition: all 0.3s ease;
}

.participants-container.show{
    display: block;
    animation: slideDown 0.5s ease;
}

#Registro_Ingreso{
    margin-top: 20px;
}
#Registro_Ingreso .ModoAcceso{
    border-bottom: 2px solid rgba(255, 255, 255, 0.185);
    color: rgba(255, 255, 255, 0.185);
    padding: 15px;
    cursor: pointer;
}
#Registro_Ingreso .ModoActivado{
    border-bottom: 2px solid #867aa7;
    color: #867aa7;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.participant-input, #particAccess{
    background-color: #00000000;
    border: 3px solid #52486b;
    color: #52486b;
    margin-bottom: 1rem;
    height: 50px;
    border-radius: 50px;
}

#particAccess{
    text-align: center;
    width: 100%;
    letter-spacing: 0.5rem;
}

.participant-input:focus, #particAccess:focus{
    border-color: #52486b;
    background-color: #00000000;
    color: #52486b;
    box-shadow: 0 0 0 rgba(53, 129, 99, 0);
}

#codeSection, #participantsSection{
    text-align: center;
}

#registerParticipants{
    background: linear-gradient(145deg,#3d3636,#52486b);
}

/* Waitroom */
.waiting-room {
    padding: 0;
}

.waitInfo{
    text-align: center;
}

.waiting-animation {
    margin: 2rem 0;
}

.waiting-animation i {
    color: #52486b;
    font-size: 3rem;
}

.participant-name {
    color: #fff;
    font-weight: 500;
}

.participant-time {
    color: #888;
}

.badge {
    padding: 0.5em 1em;
    border-radius: 20px;
    font-weight: normal;
}

.status-message {
    color: #847b9d;
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* RESULTADOS */
@keyframes gentlePulse {
    0% {
        transform: scale(1);
        box-shadow: -10px 10px 0 rgb(20, 20, 20);
    }
    50% {
        transform: scale(1.02);
        box-shadow: -25px 25px 0 rgba(20, 20, 20, 0.644);
    }
    100% {
        transform: scale(1);
        box-shadow: -10px 10px 0 rgb(20, 20, 20);
    }
}
@keyframes apperPartic {
    0%{
        display: flex;
        opacity: 0;
    }
    100%{
        display: flex;
        opacity: 1;
    }
}

#Participant1 {
    animation: gentlePulse 2s ease-in-out infinite;
    box-shadow: -10px 10px 0 rgb(20, 20, 20);
}
.participant {
    visibility: hidden;
}
.participant.activo{
    visibility: visible;
    transform: translateX(0);
    opacity: 1;
}

#QuestionResult .Pregunta{
    padding: 20px;
    border: 1px solid rgba(97, 97, 97, 0.219);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
}
#QuestionResult .Pregunta:hover{
    transform: scale(1.005);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.137);
}
#QuestionResult h3 span{
    color: #877f9b;
    font-size: 14pt;
    margin-left: 10px;
}

.pairs{
    background: linear-gradient(to left,#2e3a46,#446859cb,#35816300);
    position: relative;
    margin-top: 15px;
    border-radius: 20px;
    min-height: 50px;
    height: min-content;
    width: 100%;
    display: flex;
    flex-direction: row;
}
.pairs div{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.pairs div .colA{
    padding: 15px;
    padding-left: 15%;
    text-align: left;
    display: flex;
    align-items: center;
    max-height: 100%;
}
.pairs div .colA mjx-container{
    text-align: left;
}
.pairs div .colB{
    padding: 15px;
    text-align: left;
    display: flex;
    align-items: center;
    max-height: 100%;
}
.pairs div .colB mjx-container{
    text-align: left;
}
.pairs .cant_part{
    text-align: right;
    width: 20%;
    padding-right: 5px;
    min-width: max-content;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pairs .cant_part span{
    background-color: #1a1a1a7e;
    padding: 10px;
    border-radius: 20px;
    color: rgb(83, 83, 83);
    font-size: 10pt;
}

.unico p{
    background: linear-gradient(to left,#2e3a46,#446859cb,#35816300);
    position: relative;
    padding: 15px;
    border-radius: 20px;
    min-height: 50px;
    height: min-content;
    display: inline-block;
    min-width: 30%;
}

.options div{
    background: linear-gradient(to left,#2e3a46,#446859cb,#35816300);
    position: relative;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    min-height: 50px;
    height: min-content;
    display: flex;
    align-items: center;
    flex-direction: row;
    min-width: 30%;
}
.options div .resp_opt{
    min-width: 80%;
    margin: 0;
}
.options div .cant_part{
    text-align: right;
    width: 20%;
    min-width: max-content;
    margin: 0;
}
.options div .cant_part span{
    background-color: #1a1a1a7e;
    padding: 10px;
    border-radius: 20px;
    color: rgb(83, 83, 83);
    font-size: 10pt;
}

.unico p span, .opt p span{
    position: absolute;
    right: 10px;
    top: 10%;
    bottom: 10%;
    display: flex;
    align-items: center;
    background-color: #1a1a1a7e;
    padding: 10px;
    border-radius: 20px;
    color: rgb(83, 83, 83);
    font-size: 10pt;
}
.options p .MathJax, .pairs div .MathJax, .unico p .MathJax{
    margin: 0 !important;
}
.options p span .tiempoOpt, .pairs span .tiempoOpt, .unico p span .tiempoOpt{
    margin: 0;
    background-color: #00000000;
    border: 0;
    text-transform: lowercase;
}
.options .inCorrect, .pairs .inCorrect, .unico .inCorrect{
    min-width: 30%;
    background: linear-gradient(to left,#2e3a4628, #52486b86,#52486b00);
}

#confetti-container {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: fixed;
    width: 8px;
    height: 10px;
    background-color: #e6bc627c;
    pointer-events: none;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-10px) rotateZ(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotateZ(360deg);
        opacity: 0;
    }
}

.btnDashboard{
    position: fixed;
    cursor: pointer;
    text-align: center;
    font-size: 15pt;
    bottom: 15px;
    right: 15px;
    padding: 0;
    background-color: rgba(37, 37, 37, 0);
    border-radius:50px;
    border: 0px solid black;
    color: white;
    transition: 0.5s ease;
}
.btnDashboard span{
    font-size: 0;
    transition: all 0.5s ease;
    padding: 0;
    width: 0;
    margin: 0;
}
.btnDashboard img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.5s ease;
}
.btnDashboard:hover{
    padding: 10px;
    border: 2px solid black;
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    box-shadow: -10px 10px 0 black;
}
.btnDashboard:hover span{
    font-size: 15pt;
    margin-left: 10px;
    margin-right: 10px;
}
.btnDashboard:hover img{
    width: 50px;
    height: 50px;
}

@media screen and (max-width: 1200px) {
    .title-result{
        left: 0;
        width: 100%;
    }
    .unico p{
        display: block;
        min-width: 200px;
    }
    .btnDashboard{
        padding: 10px;
        border: 2px solid black;
        background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
        box-shadow: -10px 10px 0 black;
    }
    .btnDashboard span{
        font-size: 15pt;
        margin-left: 10px;
        margin-right: 10px;
    }
    .btnDashboard img{
        width: 50px;
        height: 50px;
    }
}

/* Report */
.AvisoNoCarga {
    display: flex;
    flex-direction: column; /* para apilar los elementos verticalmente */
    justify-content: center;
    align-items: center;
    color: #555555;
    height: 300px;
}

.AvisoNoCarga i {
    margin-bottom: 15px;
    font-size: 100px;
}
.ReportPart{
    border: 3px solid rgb(48, 48, 48);
    border-radius: 20px;
    background: #00000000;
    transition: all 0.3s ease-in;
}
.ReportPart:hover, .Top3{
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    box-shadow: -10px 10px 0 rgb(20, 20, 20);
    border: 3px solid rgb(20, 20, 20);
}
.ReportPart_View{
    border: 1px solid rgb(48, 48, 48);
    border-radius: 20px;
    background: linear-gradient(to right,#2e3a46,#446859cb,#358163);
    transition: all 0.7s ease-in-out;
    box-shadow: -20px 20px 0 rgb(20, 20, 20);
    border: 3px solid rgb(20, 20, 20);
}
.ReportPart_View .RespCorr{
    background-color: #ffffff7a;
    border-color: #ffffff7a;
}
.ReportPart_View .RespIncorr{
    background-color: #2d2836;
    border-color: #2d2836;
}
.pregInfo{
    margin-top: 10px;
    margin-left: 10px;
    max-width: 100%;
    max-height: 100px;
    overflow-y:auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Esto hace que los elementos pasen a la siguiente línea */
    justify-content: left;
}
.accessCode{
    margin: 0;
    margin-top:5px;
    color: #949494;
    font-size: 10pt;
    transition: all 0.3s ease;
}
.accessCode span{
    font-size: 15pt;
}

.blockPreg{
    width: 15px;
    height: 15px;
    border: 2px solid rgb(100, 100, 100);
    border-radius: 20px;
    transition: all 0.7s ease;
}
.blockAssoc{
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Esto hace que los elementos pasen a la siguiente línea */
    justify-content: center;
    width: 100px;
    border: 1px solid rgb(65, 65, 65);
}

.pairAssocBlock{
    margin-top: 1px;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    transition: all 0.7s ease;
}
.RespIncorr{
    background-color: #52486b;
    border-color: #52486b;
}
.RespCorr{
    background-color: #358163;
    border-color: #358163;
}
.ReportPart:hover .RespCorr{
    background-color: #ffffff7a;
    border-color: #ffffff7a;
}
.ReportPart:hover .RespIncorr{
    background-color: #2d2836;
    border-color: #2d2836;
}
.ReportPart:hover .score-info-puntaje, 
.ReportPart:hover .accessCode, 
.Top3 .score-info-puntaje, .Top3 .accessCode{
    color: #191919;
}
@media screen and (max-width: 1200px){
    .accessCode i,.accessCode span{
        font-size: 9pt;
    }
    .pregInfo{
        display: none;
    }
    .options div,.options .inCorrect{
        min-width: 50%;
    }
    .options div .resp_opt{
        font-size: 10pt;
        min-width: 80%;
        margin: 0;
    }
    .options div .cant_part{
        text-align: right;
        width: 20%;
        min-width: max-content;
        margin: 0;
    }
    .options div .cant_part span{
        background-color: #1a1a1a7e;
        padding: 10px;
        border-radius: 20px;
        color: rgb(83, 83, 83);
        font-size: 8pt;
    }
    .unico p, .unico .inCorrect{
        font-size: 10pt;
        min-width: 100%;
        margin-bottom: 0;
    }
    .pairs div div, .unico p span{
        font-size: 8pt;
    }
    
}
@media screen and (max-width: 500px){
    .options div,.options .inCorrect{
        min-width: 100%;
    }
}