body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    background-color: lightgreen;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.header-left,
.header-right {
    flex: 1;
}

.content {
    background-color: white;
    padding: 20px;
}

.question {
    margin-bottom: 20px;
    direction: rtl;
}

.options {
    display: flex;
    flex-direction: column;
}

.option {
    border: 2px solid lightgray;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: white;
    cursor: pointer;
}

.option:hover,
.option:focus {
    background-color: lightblue;
}

#next-btn {
    background-color: teal;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: flex;
    left: 50%;
}

.footer {
    background-color: lightgray;
    padding: 10px;
    text-align: center;
}
