/* Custom styles for Rhythmix Health */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Date input styling for better visibility */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1f3a;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f0c24f;
}

/* Ensure form elements are accessible */
input:focus,
textarea:focus,
button:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

/* Additional animation for pulse effect */
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}
