  /* @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }

  
  @keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
  }
  .animate-heartbeat {
    animation: heartbeat 1.5s infinite;
  }

  #birthdayPopup.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

    .party-popper {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
  } */

  .my-scroll-container {
  overflow-y: auto;
}

.my-scroll-container::-webkit-scrollbar {
  width: 8px;
}
.my-scroll-container::-webkit-scrollbar-thumb {
  background: #2196f3;
}
