@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  .clickable-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .clickable-row:hover {
    background-color: rgb(243 244 246) !important;
  }
}
