.mcq-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1#add-exercise-title {
    font-size: 24px;
    color: #003049;
    text-align: center;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    color: #003049;
    display: block;
    margin-top: 10px;
}

textarea, input[type="text"], select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

textarea {
    resize: vertical;
    height: 100px;
}

/* Additional Styling for Form Elements */
.mcq-container form > div {
    display: flex;
    flex-direction: column;
}

.mcq-container form > div > label {
    margin-top: 10px;
}

.mcq-container form > div > input,
.mcq-container form > div > textarea,
.mcq-container form > div > select {
    margin-top: 5px;
}