/* Custom Scrollbar Styles for Apple Minimalist Theme */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.16);
}

/* Ensure smooth transition in button states */
button {
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Focus styles */
input:focus, select:focus, textarea:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05) !important;
}
