#ptp-chat-label {
  position: fixed;
  bottom: 102px;
  right: 32px;
  font-size: 14px;
  font-weight: bold;
  color: #AA1242;
  z-index: 999999;
}

#ptp-chat-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #AA1242;
  cursor: pointer;
  z-index: 999999;
  display: flex;
  justify-content:center;
  align-items:center;
  background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA1MCA1MCI+PHBhdGggZD0iTTI1IDRDMTEuOTU5NCA0IDIgMTIuOTU5NCAyIDI0QzIgMzUuMDQwNiAxMS45NTk0IDQ0IDI1IDQ0QzM4LjA0MDYgNDQgNDggMzUuMDQwNiA0OCAyNEM0OCAxMi45NTk0IDM4LjA0MDYgNCAyNSA0WiIgZmlsbD0iI0FFMTI0MiIvPjxjaXJjbGUgY3g9IjE4IiBjeT0iMjQiIHI9IjMiIGZpbGw9IiNmZmYiLz48Y2lyY2xlIGN4PSIzMiIgY3k9IjI0IiByPSIzIiBmaWxsPSIjZmZmIi8+PC9zdmc+");
  background-size:60%;
  background-repeat:no-repeat;
  background-position:center;
  animation:ptpFloat 2s infinite ease-in-out;
}

@keyframes ptpFloat {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

#ptp-chat-window {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 320px;
  height: 450px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #AA1242;
  display: none;
  flex-direction: column;
  z-index: 999999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  overflow: hidden;
}

#ptp-chat-header {
  background:#AA1242;
  color:#fff;
  padding:10px;
  text-align:center;
  position:relative;
  font-weight:bold;
}

#ptp-chat-close {
  position:absolute;
  left:10px;
  top:6px;
  cursor:pointer;
}

#ptp-chat-messages {
  flex: 1;
  padding:10px;
  overflow-y:auto;
  direction:rtl;
}

.ptp-msg-user {
  background:#AA1242;
  color:#fff;
  padding:8px 12px;
  margin:8px 0;
  border-radius:8px 8px 0 8px;
  width:fit-content;
  margin-left:auto;
}

.ptp-msg-bot {
  background:#efefef;
  padding:8px 12px;
  margin:8px 0;
  border-radius:8px 8px 8px 0;
  width:fit-content;
}

#ptp-chat-input-area {
  display:flex;
  border-top:1px solid #ddd;
  padding:8px;
}

#ptp-chat-input {
  flex:1;
  padding:8px;
  border-radius:8px;
  border:1px solid #ccc;
}

#ptp-chat-send {
  width:45px;
  height:45px;
  background:none;
  border:none;
  cursor:pointer;
  background-image:url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjE5IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnL3N2ZyI+PHBhdGggZD0iTTMgMjFsMTgtOS0xOC05eiIgZmlsbD0iI0FhMTI0MiIvPjwvc3ZnPg==");
  background-repeat:no-repeat;
  background-size:65%;
  background-position:center;
}
