.skincheck-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.skincheck-container h2 {
    color: #064438;
    font-size: 24px;
}

.skincheck-container span {
    color: #064438;
    font-weight: normal;
}

.question-section {
    background-color: #f9efdf;

    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #d8c89a;
}

.question-section p {
    font-size: 16px;
    margin-bottom: 10px;
}

.options label {
    display: block;
    margin-bottom: 8px;
}

.options input[type="radio"] {
    margin-right: 10px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.submit-button,
.prev-button,
.next-button {
    color: #064438;
    background-color: transparent;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.navigation .next-button {
    margin-left: auto; /* Ini akan memastikan next-button berada di sebelah kanan */
}

.submit-button:hover,
.prev-button:hover,
.next-button:hover {
    background-color: #064438;
    color: #ffffff;
}
/* Tambahkan ini untuk mengubah warna ketika radio button dipilih */
.options input[type="radio"]:checked + label {
    color: #064438;
    font-weight: bold;
}

.options input[type="radio"] {
    accent-color: #064438; /* for modern browsers */
}
