.wishlist-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .gift-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
  }

  .gift-card:last-child {
    border-bottom: none;
  }

  .gift-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .gift-details {
    flex: 1;
  }

  .gift-title {
    font-size: 1.2em;
    margin: 0;
    color: #333;
  }

  .gift-description {
    font-size: 1.1em;
    color: #666;
    margin: 5px 0;
  }

  .gift-url {
    color:#666;
    font-size: 0.9em;
  }
  .gift-status {
    margin: 10px 0;
  }
  .status_available {
    color: #6a6;
  }

  .status_reserved {
    color: #a66;
  }

  .gift-price {
    font-size: 1em;
  }

  .reserve-btn {
    display: inline-block;
    padding: 8px 12px;
    margin-top: 10px;
    background-color: #578175;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
  }

  .reserve-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  /* Popup styles */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none; /* Hidden by default */
  }

  .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .popup-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
  }  
  .popup-content textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

  .popup-content button {
    padding: 10px 15px;
    background-color: #578175;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .popup-content button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }
  .popup-content button.button-cancel {
    background-color: #929292;  
  }
  .loading {
    margin-left: auto;
    margin-right: auto;
  }