.animate-scale:hover {
    transition: transform 0.3s;
    transform: scale(1.2);
}
.cursor-stop {
    cursor: not-allowed;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }
  
  .close-btn {
    float: right;
    cursor: pointer;
  }
  