#dapb-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(100px);
  opacity: 0;
}

#dapb-popup.dapb-visible {
  transform: translateY(0);
  opacity: 1;
}

.dapb-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 20px 22px;
  width: 300px;
  max-width: 90vw;
  border-top: 6px solid #0073e6;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.dapb-card h3 {
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.dapb-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.dapb-btn {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.dapb-btn:hover {
  background: #005bb5;
}

.dapb-close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: none;
  background: transparent;
  font-size: 20px;
  color: #475569;
  cursor: pointer;
}

@media (max-width: 600px) {
  .dapb-card {
    width: 260px;
    padding: 16px;
  }
}
