/* Custom CSS Enhancements for DaisyUI & RTL Layout */

/* Custom Scrollbar for Category Pills */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Article Prose Formatting */
#modal-body {
  direction: rtl;
  text-align: right;
  word-break: break-word;
}

#modal-body p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

#modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.5rem auto;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

#modal-body iframe {
  max-width: 100%;
  border-radius: 1rem;
  margin: 1.5rem 0;
}

#modal-body a {
  color: #38bdf8;
  text-decoration: underline;
}

/* Custom Card Animation */
.card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
