/* @tailwind base;
@tailwind components; */
@tailwind utilities;

@import "tailwindcss";

.btn {
  @apply inline-flex items-center px-4 py-2 border rounded-md shadow-sm text-sm font-medium focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500;
}

.btn-blue {
  @apply border-transparent text-white bg-blue-600 hover:bg-blue-700;
}

.btn-gray {
  @apply border-gray-300 text-gray-700 bg-white hover:bg-gray-50;
}

.tel-link {
  color: blue;
  text-decoration: underline;
}
.tel-link:hover {
  color: darkblue;
  text-decoration: none;
}

