body {
  direction: rtl;
  text-align: right;
  font-family: 'Poppins', sans-serif;
}

input, textarea {
  text-align: right;
} 

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

/* Optional: Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

.aspect-w-16 {
  position: relative;
  padding-bottom: 75%;
}

.aspect-w-16 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#additional_notes {
  padding: 10px;
}
#additional_notes ol, #additional_notes ul {
  list-style: initial;
}