/* Custom position */
.custom-modal {
    /* top: 9%; /* Adjust top position */
    max-width: 25%; /* Custom width */
    max-height: 25vh;
    position: fixed;
    right: 5%;
    top: 9%;
    
}

/* Custom CSS to make the close button white */
.custom-modal .btn-close {
    filter: brightness(0) invert(1); /* Makes the icon white */
}
.custom-modal .btn-close:hover {
    opacity: 0.8; /* Optional: add hover effect */
}