@plugin "daisyui" {
  themes: corporate --default;
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
  color: #1f2937;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #7b4a2e;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #7b4a2e;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}
