.masonry-slider {
    width: 100%;
    margin: 0 auto;
}

.masonry-item {
    width: calc(33.333% - 20px);
    margin: 10px;
    display: inline-block;
    vertical-align: top;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .masonry-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .masonry-item {
        width: calc(100% - 20px);
    }
}

/* Admin styles */
#image_preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.image-item {
    position: relative;
    width: 150px;
    height: 150px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
}