body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-container {
    width: 90%;
    max-width: 800px;
    margin-bottom: 20px;
}

.filter-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.filter-select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 5px;
}

.outer-container {
    padding: 40px; /* Space around the inner container */
    background-color: #f4f4f4; /* Light background color for outer container */
}

.container {
    width: 90%;
    max-width: 800px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #bbb;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease-in-out;
}

.container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.question-topic {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.question-body {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
    padding-left: 10px;
}

.options {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
}

.options li {
    margin-bottom: 10px;
    padding: 5px;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.options li:hover {
    background-color: #e0e0e0;
}

.list-group{
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
}

.ai-notes-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ai-suggested-answer {
    font-size: 18px;
    margin-bottom: 10px;
    color: #007bff;
}

.ai-notes {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
