/**
 * Shiksha Nagari Post to PDF - Stylesheet
 */

.snp-download-container {
  margin: 32px 0 24px;
  padding: 16px 20px;
  background-color: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
}

.snp-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #dc2626; /* Default vibrant red or customizable */
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

.snp-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
}

.snp-download-btn:active {
  transform: translateY(0);
}

.snp-download-btn.is-generating {
  opacity: 0.8;
  cursor: wait;
  pointer-events: none;
}

.snp-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.snp-btn-subnote {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
}

.snp-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: snp-spin 0.8s linear infinite;
  margin-left: 6px;
}

@keyframes snp-spin {
  to { transform: rotate(360deg); }
}

/* Print Specific Rules */
@media print {
  .snp-download-container {
    display: none !important;
  }
}
