/* ปุ่ม Bubble */
.bubble-button {
  position: fixed;
  bottom: 20px;
  right: 60px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.bubble-button:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.bubble-button i {
  font-size: 24px;
}

/* เมนู */
.menu {
  position: fixed;
  bottom: 90px;
  right: 60px;
  /*
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  */
  padding: 10px;
  display: none; /* ซ่อนเมนูไว้ก่อน */
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 1000;
}

.menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  margin: 10px 0;
}

.menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.menu ul li a:hover {
  color: #007bff;
}
/* สไตล์สำหรับไอคอนโซเชียลมีเดีย */
.menu ul li a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu ul li a img {
  width: 60px;
  height: 60px;
  /*border-radius: 50%;*/ /* ทำให้รูปภาพเป็นวงกลม */
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);*/ /* เพิ่มเงา */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* เอฟเฟกต์เมื่อ hover */
.menu ul li a:hover img {
  transform: scale(1.1); /* ขยายขนาดเมื่อ hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* เพิ่มเงาเมื่อ hover */
}
