@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
 /* Keyframe for center-outwards border animation */
 @keyframes borderExpandCenterOutwards {
    0% {
      width: 0%;
      left: 50%;
    }
    100% {
      width: 100%;
      left: 0%;
    }
  }
  /* Utility class for the center-outwards animation */
  .hover-border-expand-center-outwards:hover::after {
    animation: borderExpandCenterOutwards 0.5s ease forwards;
  }

  /* Base styles for links */
  .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px; /* Optional: Adjust padding for space around text */
  }

  /* Styling for the animated border */
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* Start from center */
    width: 0;
    height: 4px; /* Increased thickness to 4px */
    background-color: #fff;;
    transition: all 0.5s ease;
  }
  .lobster-regular {
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limits text to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
} 
.jar{
  width: 100%;
  -webkit-mask-image: url('../images/jar.png');
  mask-image: url('../images/jar.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}