body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
p{
    font-size: 20px;
    color: #2F312E;
}
select{
    font-size: 20px;
}
textarea{
    width: 100%;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.center-heading {
    text-align: center;
}
.subtitle{
    color:#0073e6
}

.question {
    margin-bottom: 5px;
    display: inline-block; /* Use flexbox to make the circle and text inline */
    align-items: center;
}

.instruction p{
    font-weight: bold;
    text-decoration: underline;
}

.choices {
    margin-top: 10px;
}

.blanks {
    margin-top: 10px;
}

select {
    padding: 5px;
    width: 150px;
}

button {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #005bb9;
}

.hidden{
    display: none !important;
}

.passage{
    padding: 5px;
    border-radius: 5px 5px 5px 5px;
    background-color: #FEE8E7;
}

.circle {
    display: inline-block; /* Display as inline block to form a circle */
    width: 40px; /* Set the width and height to create a circle */
    height: 40px;
    background-color: teal; /* Set the background color */
    color: white; /* Set the text color */
    border-radius: 50%; /* Make it circular */
    text-align: center; /* Center the text horizontally */
    line-height: 40px; /* Center the text vertically */
    margin-right: 10px; /* Add some spacing between the number and text */
    font-weight: bold; /* Optionally, set font weight to bold */
}

.options{
    padding: 5px;
    border-radius: 5px 5px 5px 5px;
    background-color: #C3E0F3;
}

.exam-timer{
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Adjust the container height as needed */
}
#startButton{
    padding: 10px 20px; /* Add some padding for better visibility */
    font-size: 16px; /* Adjust the font size as needed */
}


.button-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on all screen sizes */
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.thumbnail-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.thumbnail-button:hover {
    background-color: #0056b3;
    
}


.image {
    flex: 1;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content {
    flex: 1;
    padding: 20px;
    text-align: left;
}
/*  */
.background-container {
    /* Set the background image and specify its path */
    background-image: url('../quantitative/1.png');
    
    /* Make the background cover the entire container and maintain its aspect ratio */
    background-size: contain;

    /* Prevent the background image from repeating */
    background-repeat: no-repeat;
    
    /* Center the background image both horizontally and vertically */
    background-position: center center;
    
    /* Set a fixed height for the container (adjust as needed) */
    height: 100px; /* You can use percentage values for responsiveness, e.g., 100% */
    
    /* Add some padding and text color for better visibility */
    padding: 20px;
    color: white;
    text-align: center;
}

