
body {
    display:block;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-size: 22px;
}
#quiz-container { 
    max-width: 600px;
    margin: auto;
    border-radius: 10px;
    display: none;
}
#quiz-resume { 
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
}
.form-check {
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 1px solid rgb(192, 191, 190);
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.form-check-input {
    margin: 10px;
    
    
}
#question {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    background-color: rgb(238, 250, 228);
    padding: 10px;
    border-radius: 5px;
}
.correct {
    background-color: green;
    color: white;
}
.incorrect {
    background-color: red;
    color: white;
}
#nextButton {
    display: none;
}
#progress-container {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
#progress-bar {
    height: 100%;
    display: flex;
    background-color: #e0e0e0;
    border-radius: 10px;
}
.progress-segment {
    height: 100%;
}
#segment_correct {
    height: 100%;
    background-color: green;
    color: white;
    text-align: center;
    font-size: 50%;
   
    width: 0%;
}
#segment_error {
    height: 100%;
    background-color: red;
    color: white;
    text-align: center;
    font-size: 50%;
    width: 0%;
}
#count-item {
    display: flex;
    margin-bottom: 10px;
}
.btn-skip {
        background-color: #ff5722; /* Color de fondo */
        color: white; /* Color de texto */
        padding: 2px 5px; /* Espaciado interno */
        border: none; /* Quitar borde */
        border-radius: 5px; /* Bordes redondeados */
        font-size: 20px; /* Tamaño del texto */
        font-weight: bold; /* Negrita */
        cursor: pointer; /* Cambiar cursor al pasar sobre el botón */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidad */
        transition: background-color 0.3s, transform 0.3s; /* Animación de transición */
    }

    .navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #007bff;
color: white;
padding: 15px 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
}

.navbar h1 {
font-size: 18px;
margin: 0;
}

.navbar button {
background-color: white;
color: #007bff;
border: none;
padding: 4px 16px;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
}

#btn_inicio {
background-color: white;
color: #1c5307;
border: none;
padding: 4px 16px;
border-radius: 10px;
font-weight: bold;
cursor: pointer;
}
.no_edit {
    /* Deshabilita la selección de texto en la mayoría de navegadores modernos */
    user-select: none; 
    
    /* Prefijos de compatibilidad para navegadores específicos (importante para máxima compatibilidad) */
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
}
