#copilot-question {
    max-width: 768px;
    margin: 0 auto;
}
#copilot-question-container {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

#timer {
    font-size: 20px;
    font-weight: bold;
    color: #375bb7;
    text-align: center;
    margin-bottom: 20px;
}

.question {
    margin-bottom: 20px;
}

.question p {
    font-size: 18px;
    font-weight: bold;
}

.question label {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 16px;
    color: #375bb7;
    background-color: #dbe3e7;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.question label:hover {
    background-color: #b4bdc2;
}

.question input[type="radio"] {
    display: none;
}

.question input[type="radio"]:checked + label {
    background-color: #005177;
    color: #fff;
}

#next-button {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#next-button:hover {
    background-color: #005177;
}