h2 {
    top: 500px;
    width: 100%;
    text-align: center;
    margin-top: -15;
}
p {
    top:510px;
    width: 100%;
    text-align: center;
}
.question-container {
    text-align: center;
    background: #ffffff;
    background-image: url(assets/photos/UUSI_logonojo.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    background-size: 40%;
    padding: 120px;
    border-radius: 15px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    width: 75%; 
    height: 700px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: visible;
    text-align: center;
    position: absolute;
    top: 470px; 
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 20px;
}

.question {
    margin-bottom: 15px;
}
.options {
    margin-top: 8px;
}
button {
    padding: 15px 23px;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
    background: #B6E27D;
    color: black;
    border: none;
    border-radius: 5px;
}
button:hover {
    background: #97C955;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 80px;
    padding: 15px 23px;
    font-size: 14px;
    background: #B6E27D;
    color: black;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}

.back-button:hover {
    background: #97C955;
}


.options {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
}

.options label {
    display: flex;
    align-items: center; 
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.options label:hover {
    background-color: #f0f0f0; 
}

.options input {
    margin-right: 5px; 
}
.prev-button, .next-button {
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 12px;
    margin: 8px;
    cursor: pointer;
    background: #B6E27D;
    color: black;
    border: none;
    border-radius: 5px;
}
.options {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    align-items: flex-start;
     
}

.options label {
    display: flex; 
    align-items: center; 
    gap: 10px; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    cursor: pointer; 
    width: 100%; 
    max-width: 400px; 
    background-color: #ffffff; 
    box-sizing: border-box; 
}

.options label:hover {
    background-color: #f0f0f0; 
}
.info-btn {
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 220px;
    margin-top: 10px;
    font-size: 14px;
    color: black;
    background-color: #E89E67; 
    padding: 12px 16px;
    border-radius: 50%; 
    border: none;
    outline: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease, transform 0.2s ease; 
}

.info-btn:hover { 
    transform: scale(1.1); 
    background: #DD7D52;
}

.info-hint {
    font-size: 12px;
    color: #666666;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: center;
}

.tooltip {
    display: none; 
    position: absolute;
    left: -100%;
    top: 120%;
    transform: translateX(-80%);
    background: #B6E27D; 
    color: black;
    padding: 16px 20px;
    border-radius: 8px; 
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); 
    z-index: 1000;
    white-space: pre-line;
    width: 550px; 
}

.tooltip-text {
    content: " ";
    position: absolute;
    bottom: 100%;  
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #97C955 transparent transparent transparent;
  }

.info-details {
    text-align: left;
    margin: 5px 0;
    line-height: 1.5;
}

/* Hover behavior to show the tooltip */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }
.info-btn:hover .tooltip {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease; 
}
.box {
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 50%;
    padding: 20px;
    margin: 10px auto;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.box .level {
    font-size: 18px;
    font-weight: bold;
    color: #B6E27D;
}
.box .description {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    border-radius: 8px;
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    z-index: 10;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}
.box:hover .description {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.description {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    line-height: 150px;
    font-size: 16px;
    transition: opacity 0.3s;
    opacity: 0;
}

.info-button:hover + .description {
    display: block;
    opacity: 1;
}
.download-button{
    position: absolute;
    top:20px;
    right: 150px;
    cursor: pointer;
}