/* ========================================
   PDF Download Button Styles
   ======================================== */

.btn-download-pdf {
  background: linear-gradient(135deg, var(--primary-color) 0%, #15157a 100%);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(25, 25, 112, 0.2);
}

.btn-download-pdf:hover {
  background: linear-gradient(135deg, #15157a 0%, var(--primary-color) 100%);
  box-shadow: 0 6px 20px rgba(25, 25, 112, 0.35);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-download-pdf:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(25, 25, 112, 0.25);
}

.btn-download-pdf i {
  margin-right: 8px;
}

.btn-download-pdf:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ========================================
   Download Notification Styles
   ======================================== */

.alert-success {
  background-color: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  color: #27ae60;
}

.alert-danger {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid #e74c3c;
  color: #c0392b;
}

.alert-info {
  background-color: rgba(25, 25, 112, 0.1);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* ========================================
   Button Group Layout
   ======================================== */

.d-flex.gap-2 {
  gap: 12px;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.ms-2 {
  margin-left: 0.5rem;
}
