/* Start custom CSS for html, class: .elementor-element-eb6e6e5 */.image-container {
    position: relative;
    display: inline-block;
}

.hover-image {
    display: block;
}

.hover-text {
    display: none;
    position: absolute;
    top: 0%; /* ตำแหน่งอยู่ใต้รูปภาพ */
    left: 0%;
    transform: translateX(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
    white-space: normal; /* ข้อความไม่ล้น */
    z-index: 1000; /* ทำให้ป๊อปอัพอยู่เหนือเนื้อหาอื่น */
    width: auto; /* ขยายขนาดตามเนื้อหาข้อความ */
    max-width: 2000px; /* ปรับตามความต้องการของคุณ */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-container:hover .hover-text {
    display: block;
}/* End custom CSS */