body {
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 90%;
}

#questionsBox, #answersBox {
    min-height: 150px;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #a0aec0 #edf2f7;
}

#questionsBox::-webkit-scrollbar, #answersBox::-webkit-scrollbar {
    width: 8px;
}

#questionsBox::-webkit-scrollbar-track, #answersBox::-webkit-scrollbar-track {
    background: #edf2f7;
}

#questionsBox::-webkit-scrollbar-thumb, #answersBox::-webkit-scrollbar-thumb {
    background: #a0aec0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    #questionsBox, #answersBox {
        max-height: 200px;
    }

    .flex.space-x-4 {
        flex-direction: column;
        gap: 1rem;
    }

    button {
        width: 100%;
    }

    .grid.sm\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}