/* Floating action buttons for WhatsApp and Livechat */
#floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s;
  text-decoration: none;
}

.fab-btn i {
  font-size: 24px;
  color: #fff;
}

.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.fab-instagram { background-color: #FD1D1D; }
.fab-whatsapp { background-color: #25D366; }
.fab-livechat { background-color: #007bff; }

/* Livechat popup widget */
.livechat-widget {
  position: fixed;
  right: 20px;
  bottom: 86px; /* above the floating buttons */
  width: 320px;
  max-height: 60vh;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.2), 0 10px 10px rgba(0,0,0,0.12);
  overflow: scroll;
  z-index: 9999;
  border: 1px solid #e7edf3;
  animation: lc-slide-in 160ms ease-out;
}

@keyframes lc-slide-in {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lc-header {
  background: #007bff;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lc-header .lc-sub { display:block; font-size:11px; opacity:0.85; }
.lc-close { background: transparent; border: 0; color: #fff; font-size: 16px; }

.lc-body { padding: 10px; background: #f9fbfd; }
.lc-footer { padding: 10px; border-top: 1px solid #e7edf3; background: #fff; }

#livechat-messages { background: #f9fbfd; padding: 8px; height: 260px; overflow-y: auto; }
.admin-livechat-messages, #admin-livechat-messages { background: #f9fbfd; padding: 8px; height: 220px; overflow-y: auto; }
.lc-msg {
  margin: 8px 0;
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
}
.lc-msg.visitor { background: #e1f5fe; color: #0c5460; align-self: flex-end; margin-left: auto; }
.lc-msg.admin { background: #fff; color: #333; border: 1px solid #e7edf3; }
.lc-time { display:block; font-size:11px; color:#8a97a6; margin-top:4px; }

.lc-honeypot { position:absolute; left:-9999px; top:-9999px; }

/* Admin widget list styles */
.lc-list { display: flex; flex-direction: column; gap: 8px; }
.lc-item { background:#fff; border:1px solid #e7edf3; border-radius:8px; padding:8px; }
.lc-item .title { font-weight:600; color:#0c1a2a; }
.lc-item .meta { font-size:12px; color:#6b7a8b; margin-top:2px; }
.lc-item .excerpt { font-size:13px; color:#334155; margin-top:6px; }
.lc-item .actions { display:flex; gap:6px; margin-top:8px; }
.lc-item .btn-sm { padding:4px 8px; font-size:12px; }