body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3F5E7;
    margin: 0;
}




button:hover {
    background: #2f62c4;
}



table{
    width: 100%;
    text-align: center;
}
.question{
    font-size: 12pt;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-align: justify;
}

.answer{
/*    font-size: 20pt;*/
}

.header-card{
    border-top: 18px solid #14519E;
    border-radius: 20px;
}

.required-mark{
    color: red;
    font-weight: bold;
}

.checked {
  color: #FBBC04;
}

i{
    color: #80868B;
}


/* Hide the default radio button */
        .radio-input {
            display: none;
        }

        /* Style the label to look like a radio button */
        .radio-label {
            position: relative;
            padding-left: 35px;
            margin-right: 20px;
            cursor: pointer;
            font-size: 12pt;
            user-select: none;
        }

        /* Create the custom radio button */
        .radio-label::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #ccc;
            background-color: white;
            transition: background 0.3s, border-color 0.3s;
        }

        /* Create the checked state for the custom radio button */
        .radio-input:checked + .radio-label::before {
            border-color: #14519E;
            background-color: #14519E;
        }

        /* Create the inner circle for the checked state */
        .radio-label::after {
            transform: translate(-3px, -3px);
            content: "";
            position: absolute;
            left: 9px;
            top: 9px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: white;
            transition: opacity 0.3s;
            opacity: 0;
        }

        /* Show the inner circle when the radio button is checked */
        .radio-input:checked + .radio-label::after {
            opacity: 1;
        }

input[type='text']{
    border: none;
    outline: none !important;
    border-bottom: 1px solid gray;
    width: 100%;
    max-width: 600px;
}

input[type='text']:focus{
    border-bottom: 3px solid #14519E;
    animation: borderExpand 1s forwards;
}

@keyframes borderExpand {
    0% {
        border-color: #ccc;
        background-size: 0 100%;
    }
    50% {
        border-color: #14519E;
        background-size: 100% 100%;
    }
    100% {
        border-color: #14519E;
        background-size: 100% 100%;
    }
}

.error_message{
    display: none;
}


#resetButton{
    color: rgb(103, 58, 183);
    outline:none !important;
    border-color: #F3F5E7 !important;
}

.loader{
    background-color: rgba(255, 255, 255,0.3);
    width: 100%;
    height: 1000pt;
    position: fixed;
    top:0;
    display: none;
    transition: opacity 0.5s ease-in-out;
}
.fa-spinner{
    color: #14519E;
    margin-top:400px ;
}

.marathi_que{
    display: none; 
}

.hindi_que{
    display: inline;
}

/*.language_select{
    position: relative; !important;
    right: 0;
}*/
.myheader
{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

@media only screen and (max-width:1458px)
{
    .myheader
    {
        flex-direction: column !important;
    }
}

.explanation_list p
{
    margin: 2px !important;
}

.card.red-border
{
    border: 1px solid red;
}

.language_select_div
{
    display: flex;
    gap: 5px;
    align-items: center;
}