 /* Pop-up pencere stili */
 #reservationPopup {
    display: none; /* Başlangıçta gizlenir */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
    z-index: 999;
  }

  /* Pop-up içeriği stili */
  .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
  }
  @media (min-width: 1200px){
    .popup-content {
      background-color: #fff;
    }
  }

  /* Buton stili */
  .popup-content button {
    padding: 10px 20px;
    background-color: #a73128;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .popup-content button:hover {
    background-color: #dc3545;
  }

  .close-btn {
    background-color: #dc3545;
    margin-top: 10px;
  }

  .close-btn:hover {
    background-color: #c82333;
  }

  .no-show-btn {
    background-color: #007bff;
    margin-top: 10px;
  }

  .no-show-btn:hover {
    background-color: #0056b3;
  }