body {
    font-family: 'Arial', sans-serif;
    background: #ffffff; /* White background */
    color: #00b7ff; /* Dark Cyan text color */
    max-width: 50%;
    margin: 20px auto;
    padding: 0 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;

}
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #00b7ff; /* Dark Cyan heading color */
    letter-spacing: 2px;
}
#question {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #000000; /* Dark Cyan heading color */

}
.option {
    display: inline-block;
    width: 45%;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    background-color: rgb(255, 255, 255); /* Light cyan background */
    cursor: pointer;
    transition: all 0.3s ease;
}
.option:hover {
    background-color: #00b7ff; /* Darker cyan on hover */
    transform: scale(1.05);
}
#result h2 {
    margin-top: 10px;
    font-size: 2em; /* Larger font size for the h2 */
    font-weight: bold;
    color: #00b7ff; /* Dark Cyan heading color */
}

#result h4 {
    font-size: 1.25em; /* Slightly smaller than h2 */
    font-weight: normal;
    color: #333333; /* Dark gray color for subheadings */
    margin-top: 10px;
}

#result p {
    font-size: 1em; /* Normal font size for paragraphs */
    font-weight: normal;
    color: #666666; /* Light gray color for paragraph text */
    margin-top: 10px;
}



#result ul {
    list-style-position: inside; /* Makes the list markers inside the container */
    padding-left: 0; /* Removes default left padding */
    text-align: left; /* Ensures the text is left-aligned */
    color: #000000; /* Dark Cyan heading color */
    padding-bottom: 20px; /* Adjust the value to increase or decrease the space */

}

#result li {
    margin-left: 0; /* Ensures the list items align with the container */
    padding-left: 0; /* Ensures there's no padding */
    color: #000000; /* Dark Cyan heading color */
    margin-bottom: 10px;


}



#channel-doctor {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background-color: #1cb0eb; /* Dark Cyan */
    color: white;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#channel-doctor:hover {
    background-color: #0b445b; /* Darker cyan */
}
