/* Survey Page */
.question {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.question .qHeader {
    font-size: 20px;
    margin-bottom: 20px;
}

.question .item.option {
    background-color: #f8f9fa; 
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px 15px;
    margin-bottom: 12px;
    min-height: 40px; 
    box-sizing: border-box;
    display: block; 
}

.question label.item.option {
    font-size: 16px;
    cursor: pointer;
    display: block;
    flex: initial !important; 
    width: auto !important;   
}

.question .item.option .feedback {
    font-size: 14px;
    color: #555;
    margin: 4px 0 0 0; 
    min-height: 16px; 
    line-height: 1.2;
    display: none; 
}

.question .item.option:hover {
    background-color: #eef6fc;
}

.question .item.option input[type="radio"]:checked + label {
    font-weight: bold;
    color: #007BFF;
}

.question .didyouknow-box {
    display: none; 
    background-color: #e0f0ff; 
    border-left: 5px solid #066dae; 
    border-radius: 12px;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-top: 5%;
}

.question .didyouknow-box .didyouknow-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #066dae;
}

.question .didyouknow-box .didyouknow-text {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

#survey-form fieldset {
    padding-right:10%;
}

/* Result Page */
.result-container {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 40px;
    margin-bottom: 10%;
}

.sub-header {
    background-color: #0077c8;
    color: #ffffff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 1rem;
}

.small-blue {
    color: #0077c8;
    font-size: 1.1rem;
    font-weight: bold;
}

.result-body {
    margin-top: 10px;
}

.percent {
    display: block;
    color: #d40000;
    font-size: 3.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.grade {
    display: block;
    color: #d40000;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 12px;
}

.pick1 {
    display: block;
    color: #d40000;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 5% auto;
    text-align: center;
}

.wrap-download {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px auto 5%;
    text-align: center;
    width: fit-content;
}

.wrap-download a {
    color: #0077c8;
    font-size: 1.1rem;
    text-decoration: none;
}

.styled-list {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
    padding-top: 5%;
}

.styled-list li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    color: black;
    font-weight: normal;
    line-height: 1.6;
}

.styled-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: green;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

@media print {
    .wrap-logo_footer {
        padding-top:50px;
    }
    .mobile_50_logo_footer {
        padding-top:none !important;
    }
    #findrisk {
        margin-top:5%;
    }
    .wrap-download {
        display: none !important;
    }
    .buttonFooter, .submitBtn {
        display: none !important;
    }
}

