  
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
  }

  .popup-content h2 {
    color: #b30000;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .popup-content .pizzaria-name {
    color: #008000;
    font-weight: bold;
  }

  .popup-content p {
    color: #333;
    margin: 5px 0;
  }

  #closePopup {
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
  }

  #closePopup:hover {
    background-color: #cc5200;
  }