/* ==========================================================================
   BetoWedding - Custom Styles & Print Overrides
   ========================================================================== */

/* Custom scrollbar hiding */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.view-content {
  animation: fadeIn 0.25s ease-out;
}

/* Print Styles */
@media print {
  body {
    background: #ffffff !important;
    padding: 0 !important;
  }
  .app-header, .action-buttons, button, #manageView, .nav-link, #nav_manage, #nav_package {
    display: none !important;
  }
  .app-container {
    box-shadow: none !important;
    max-width: 100% !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .preview-card {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}
