body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #F0F4FF;
    color: #294D89;
}

#app {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(41, 77, 137, 0.2);
}

h1, h2, h3 {
    color: #294D89;
    text-align: center;
}

#progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}

#progress {
    width: 0;
    height: 100%;
    background-color: #4E67EB;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.question {
    margin-bottom: 20px;
    background-color: #F0F4FF;
    padding: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.question:hover {
    background-color: #E5EAFF;
}

label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

label:hover {
    color: #4E67EB;
}

input[type="radio"] {
    margin-right: 10px;
}

#navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    background-color: #4E67EB;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #294D89;
}

#result-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #F0F4FF;
    border-radius: 5px;
    border: 2px solid #4E67EB;
}

#personality-result {
    font-size: 24px;
    font-weight: bold;
    color: #4E67EB;
    text-align: center;
}

#detailed-answers p {
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}