/* ... Önceki CSS kodlarınız ... */

.controls-area {
    display: flex;
    justify-content: space-between; /* Sayacı ve butonları ayır */
    align-items: center;
    margin-bottom: 20px;
}

#question-counter {
    font-weight: bold;
    font-size: 1.1em;
    color: #007bff;
    padding: 8px 15px;
    border: 1px solid #007bff;
    border-radius: 5px;
}

.navigation-buttons button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.navigation-buttons button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.navigation-buttons button:hover:not(:disabled) {
    background-color: #218838;
}

/* ... Diğer CSS kodları ... */