/* Button to open the reservation popup */
.reserve-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    background-color: #66c27b; /* Consistent with your design color */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }
  .reserve-button svg{
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  
  .reserve-button:hover {
    background-color: #5ba06b; /* Darker green for hover effect */
  }
  
  /* Popup overlay that covers the screen */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  /* Popup content area */
  .popup-content {
    background-color: #161b22; /* Dark background to match other sections */
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #c9d1d9; /* Light text color for readability */
  }
  
  /* Close button on the popup */
  .close-btn {
    font-size: 24px;
    color: #66c27b; /* Green close button to match theme */
    cursor: pointer;
  }
  
  .close-btn:hover {
    color: #5ba06b; /* Darker green for hover effect */
  }
  
  /* Form layout */
  .reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    font-family: 'Arial', sans-serif; /* Consistent font */
  }
  
  /* Label styling */
  .reservation-form label {
    font-weight: bold;
    color: #c9d1d9; /* Light text for labels */
    font-size: 14px;
  }
  
  /* Input field styling */
  .reservation-form input {
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #66c27b; /* Green border to match theme */
    border-radius: 4px;
    width: 100%;
    font-size: 14px;
    color: #161b22; /* Dark text for inputs */
    background-color: #c9d1d9; /* Light background for inputs */
  }
  
  /* Button inside the form */
  .reservation-form button {
    padding: 12px;
    background-color: #66c27b; /* Green background for submit button */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
  }
  
  .reservation-form button:hover {
    background-color: #5ba06b; /* Darker green for button hover */
  }
  
  /* Responsive design for smaller screens */
  @media (max-width: 600px) {
    .popup-content {
      width: 90%; /* Ensure it fits small screens */
    }
  }
  