.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    /* background-color: #333; */
    color: #fff;
    text-align: center;
    /* border-radius: 2px; */
    padding: 16px;
    position: fixed;
    z-index: 100;
    right: 30px;
    bottom: 30px;
    font-size: 17px;
    transition: visibility 0s, opacity 0.5s linear;
}

.toast.show {
    visibility: visible;
    opacity: 1;
}

html{
    overflow-x: hidden;
}

:root {
    color-scheme: dark;
  }
  

.gallery_image {
    width: 100%; /* Make it responsive */
    aspect-ratio: 1 / 1; /* Keeps it square */
    min-height: 150px;
    
    background-color: rgba(0,0,0,0.4); /* Placeholder color */
    background-size: cover;
    background-position: center;
    
    object-fit: cover;
    display: block; /* Prevents inline spacing issues */
  
  }
  
 /* Remove square shape once the image is loaded */
 .gallery_image.loaded{
    aspect-ratio: auto; /* Allows natural dimensions */
  }