body {
    background-color: #121212;
    color: #ffffff;
}

.container {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
}

h1, h2 {
    color: #ffffff;
}

.form-control, .btn-primary {
    background-color: #333333;
    border: none;
    color: #ffffff;
}

.form-control::placeholder {
    color: #bbbbbb;
}

.btn-primary {
    background-color: #6200ea;
}

.btn-primary:hover {
    background-color: #3700b3;
}

.avatar {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 10px 0;
}

/* Add this to your styles.css file */
.participant-list {
    list-style-type: none;
    padding: 0;
}

.participant-item {
    display: flex;
    align-items: center;
    background-color: #1e1e1e;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.participant-item img.avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.participant-item .participant-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.participant-item .participant-info p {
    margin: 0;
}

.participant-item .participant-info .arbiter {
    font-size: 0.8em;
    color: #bbbbbb;
}

.participant-item.arbiter {
    background-color: #6200ea;
}

.question-type-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.question-type-item {
    background-color: #333333;
    color: #ffffff;
    padding: 10px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
}

.question-type-item.selected {
    background-color: #6200ea;
}