/* ────────────────────── Shayari Box (Simple & Elegant) ────────────────────── */
.shayari-box {
  position: relative;
  border: 2px solid #ff4081;
  padding: 20px 20px 18px;
  margin: 15px auto;
  border-radius: 12px;
  background: linear-gradient(to bottom, #fff, #ffebee);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 80%;
  text-align: center;
  transition: all 0.3s ease;
}

.shayari-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Top-Right Action Buttons (Icons Only) */
.shayari-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.shayari-copy-btn,
.shayari-whatsapp-btn {
  background: #fff;
  color: #ff4081;
  border: 1.5px solid #ff4081;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(255, 64, 129, 0.2);
}

.shayari-copy-btn:hover,
.shayari-whatsapp-btn:hover {
  background: #ff4081;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 64, 129, 0.4);
}

.shayari-copy-btn.copied {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
  animation: pulse 0.5s ease;
}

/* Icons using Unicode */
.shayari-copy-btn::before {
  content: '📋';
}

.shayari-whatsapp-btn::before {
  content: '📱';
}

/* Shayari Content */
.shayari-content p {
  margin: 10px 0;
  color: #333;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Toast Notification */
.shayari-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.shayari-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 480px) {
  .shayari-box {
    max-width: 95%;
    padding: 16px 16px 14px;
  }
  .shayari-content p {
    font-size: 1rem;
  }
  .shayari-actions {
    top: 5px;
    right: 5px;
    gap: 4px;
  }
  .shayari-copy-btn,
  .shayari-whatsapp-btn {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }
}