@import "tailwindcss";

@plugin "daisyui";

/* Override DaisyUI input border styling */
.input-bordered {
  border-color: #d1d5db; /* gray-300 */
  border-width: 1px;
}

.input-bordered:focus {
  border-color: #3b82f6; /* blue-500 */
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}
