<style>
  html, body { background-color: #ffffff !important; }
</style>
body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 20px;
    margin: 0;
}

#rr-dialogue-widget-container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 700px;
}

#rr-dialogue-widget-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

.widget-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.question-text {
    font-size: 1.15em;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.options-container button,
#restart-button-main,
#back-button {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid #007bff;
    background-color: #fff;
    color: #007bff;
    text-align: left;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1em;
    transition: background-color 0.2s, color 0.2s;
}

.options-container button:hover,
#restart-button-main:hover,
#back-button:hover {
    background-color: #0056b3;
    color: #fff;
}

#result-card h2 {
    color: #8B008B; /* Rainbow Refugee Purple (approx) */
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5em;
}

.result-section {
    margin-bottom: 20px;
    border-left: 3px solid #eee;
    padding-left: 15px;
}

.result-section h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #555;
    font-size: 1.1em;
}
.rr-can-do-section h4 {
    color: #28a745; /* Green */
}
.rr-cannot-do-section h4 {
    color: #dc3545; /* Red */
}


.result-section pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.95em;
    line-height: 1.7;
    color: #333;
    font-family: inherit;
}

#restart-button-main, #back-button {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    margin-top: 20px;
    text-align: center;
}
#restart-button-main:hover, #back-button:hover {
    background-color: #545b62;
}