#diagnosis-chart {
    padding: 20px;
    background: #fff;
    margin: 15px auto 0;
}
#timeline {
    display: flex;
    align-items: center;
    margin: 20px auto;
    width: 200px;
    color: #fff;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #A9E6F9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

.line {
    flex-grow: 1;
    height: 2px;
    background-color: #A9E6F9;
}

#question-container, #result-container {
    text-align: center;
    margin-bottom: 20px;
}

.question {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #3cacd2;
    border-bottom: 1px dashed #3cacd2;
}

.answers {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.answer {
    padding: 15px 5px;
    font-size: 1.1em;
    cursor: pointer;
    background: linear-gradient(to right, #FF8C9B 40%, #ffb6b9);
    color: #fff;
    border-radius: 7px;
    width: 49%;
    border: none;
    font-weight: bold;
}

.answer:hover {
    background-color: #005177;
}

.result {
    font-size: 1.5em;
    color: #0073aa;
}

.consequence {
    color: #3cacd2;
    font-weight: bold;
    font-size: 1.2em;
}

#retry-button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background: linear-gradient(to right, #FF8C9B 40%, #ffb6b9);
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
}

#retry-button:hover {
    background-color: #005177;
}
