/* oz CRM — custom overrides (Tailwind CDN handles most styling) */

/* Smooth scrollbar for dark theme */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #1e293b; /* slate-800 */
}
::-webkit-scrollbar-thumb {
  background: #475569; /* slate-600 */
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748b; /* slate-500 */
}

/* Native select dropdown arrow override */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem !important;
}

/* Toggle switch — peer-checked translate */
input[type="checkbox"].sr-only:checked ~ div > div {
  transform: translateX(1rem);
}

/* File input trigger area */
input[type="file"] {
  display: none;
}

/* Kanban card hover ring */
.kanban-card:hover {
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
}

/* Message bubble tail tweak */
.msg-right {
  border-bottom-right-radius: 0.25rem !important;
}
.msg-left {
  border-bottom-left-radius: 0.25rem !important;
}
