
        
        /* ออกแบบ Popup */
        #beautifulPopup {
          position: fixed;
          bottom: 20px;
          right: 20px;
          width: 190px;
          padding: 15px;
          background: linear-gradient(135deg, #FFCC99, #FF6600);
          color: white;
          border-radius: 30px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          display: none; /* ซ่อน Popup เริ่มต้น */
          animation: slideIn 0.5s ease-out;
          overflow: hidden;
        }

        /* เพิ่มแอนิเมชันสำหรับการเลื่อน Popup */
        @keyframes slideIn {
          from {
            opacity: 0;
            transform: translateY(100px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        /* ปุ่มปิด */
        #beautifulPopup .close {
          position: absolute;
          top: 10px;
          right: 15px;
          color: white;
          font-size: 20px;
          font-weight: bold;
          cursor: pointer;
          text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        }

        #beautifulPopup h4 {
          margin: 0 0 10px;
          font-size: 18px;
          font-weight: bold;
        }

        #beautifulPopup p {
          margin: 0;
          font-size: 14px;
        }

        #beautifulPopup .btn {
          margin-top: 10px;
          background: white;
          color: #2575fc;
          border: none;
          font-weight: bold;
          border-radius: 20px;
          padding: 8px 15px;
          box-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
          cursor: pointer;
          transition: 0.3s;
        }

        #beautifulPopup .btn:hover {
          background: #e6e6e6;
          color: #6a11cb;
        }
