.hover-effect {
    transition: 0.3s; /* Smooth transition */
  }
  
  .hover-effect:hover {
    background-color: #ff5733 !important; /* Change background color */
    border: 2px solid #fff; /* White border */
    box-shadow: 0 0 10px rgba(255, 87, 51, 0.7); /* Glow effect */
  }