
/* Question paper section */
#question-paper {
    border: 1px solid white;
    border-radius: 20px;
    width: fit-content;
}

.heading {
    text-align: center;
    color: #1e3c72;
    font-weight: 500;
}


.head-btn {
    background: linear-gradient(135deg, #1e3c72, #366cc9);
    color: white;
    border-radius: 40px;
    padding: 8px;
    margin: 10px;
}

/* Foundation paper */
.question-paper-container {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.question-paper-heading {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.right {
    /* width: 70%; */
    border: 2px solid #2a5298;
    border-radius: 10px;
    /* padding: 10px; */
}

.subject-container {
    display: flex;
    flex-direction: column; /* Default to rows for small screens */
    /* gap: 20px; */
}

.topic {
    min-height: 75px;
}

@media (min-width: 768px) {
  .subject-container {
    flex-direction: row; /* Large screens → columns */
  }
}
