.image-gallery {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 16px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: auto;

.image-gallery::-webkit-scrollbar {
    height: 8px;
    background-color: #eee;
}

.image-gallery::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.image-item {
    position: relative;
    flex: 0 0 auto;
    text-align: center;
}

.image-item img {
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: auto;
    height: 140px;
    object-fit: cover;
}

.image-item span {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 12px;
    border-top: azure;
    margin-left: 2px;
    margin-top: 4px;
    text-align: left;
}