 .ant-rate-star .anticon {
     font-size: 18px;
     margin: 0px;
 }


 /* COMMENTED OUT LINE NO: 19791 to 19795 in style.css to remove the blue color hover in all the pages */
 

 .selected-image {
     width: 100%;
     height: auto;
     max-width: 726px;
     /* Ensure max width is set to keep the aspect ratio */
     max-height: 300px;
     /* Ensure max height is set to keep the aspect ratio */
 }

 @media (max-width: 768px) {
     .selected-image {
         max-width: 100%;
         max-height: 200px;
         /* Adjust height for smaller screens */
     }
 }

 @media (max-width: 480px) {
     .selected-image {
         max-width: 100%;
         max-height: 150px;
         /* Adjust height for even smaller screens */
     }
 }


/* Accordion button transition */
.accordion-button {
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-primary);
    color: white;
}

/* Off-canvas scrollbar styling */
.custom-scroll {
    overflow-y: auto;
    height: 100%;
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
.custom-scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.custom-scroll {
    scrollbar-width: none;
}