.link a {
    color: #999999;
}
.link a:hover {
    color: #ed711b;
}

.image-container {
    display: flex;
    /* Add additional styling for positioning if needed */
}

.image-zoom {
    display: inline-block;
    overflow: hidden;
    margin-right: 10px; /* Adjust spacing between images if needed */
}

.image-zoom img {
    width: 30px;
    height: 45px;
    object-fit: fill;
    transition: transform 0.3s ease-in-out;
}

.image-zoom:hover img {
    transform: scale(1.2); /* Adjust the scale factor as needed */
}

/* Styling for the second modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
}

/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 4px; /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #d2d2d2; /* Color of the thumb */
}
