#bas-survey-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

button {
    padding: 10px 20px;
    margin: 10px 0;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
}

.bas-progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    height: 20px;
    margin-bottom: 20px;
}

.bas-progress {
    width: 0%;
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.5s ease-in-out;
}

.bas-trait {
    padding: 10px;
    margin: 5px 0;
    background-color: #f1f1f1;
    cursor: pointer;
}

.bas-trait.selected {
    background-color: #4CAF50;
    color: white;
}