#ls-bubbles-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ls-bubble {
    width: 100px;
    height: 150px; /* Đặt lại kích thước mặc định */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.ls-bubble img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.ls-bubble:hover {
    transform: scale(1.1);
}

.ls-bubble .ls-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: red;
    color: white;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
}