.slideshow-container {
    width: 300px;                /* or your desired width */
    height: 300px;               /* adjust if necessary */
    overflow: hidden;
    position: relative;
    background-color: white;
    border: none;                /* Removed the border */
    padding: 0;                  /* Ensure no padding shifts alignment */
    margin: 0;                   /* Remove margins clearly */
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: contain;        /* Proper scaling clearly */
    display: block;
}
