.question-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.question {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.question:last-child {
    border-bottom: none;
}
.question-text {
    font-weight: bold;
    margin-bottom: 10px;
}
.choices {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.choice {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 5px;
}
.choice input {
    margin-right: 5px;
}
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 20px auto;
    width: 200px;
}
button:hover {
    background-color: #2980b9;
}
#results {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#results-title{
    display: none;
}

#top-job,#job-description,#job-ranking,#ego-chart,.ego-bar-label,.ego-bar-desc,#ego-interpretation{
    padding: 0px 20px;
}


.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 5px 0 15px 0;
}
.progress-bar {
    height: 20px;
    border-radius: 4px;
    background-color: #3498db;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-size: 12px;
    transition: width 1s ease-in-out;
}
.ego-chart {
    display: flex;
    justify-content: space-between;
    height: 200px;
    margin: 30px 0;
    align-items: flex-end;
}
.ego-bar {
    width: 18%;
    background-color: #3498db;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: height 1s ease-in-out;
}
.ego-bar-label {
    margin-top: 10px;
    font-weight: bold;
}
.ego-bar-value {
    color: white;
    padding: 5px 0;
}
.restart-btn {
    background-color: #e74c3c;
}
.restart-btn:hover {
    background-color: #c0392b;
}