/* Base styles for the popup, hidden by default */
#mobile-popup-overlay {
  display: none; /* Hide the popup by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
 
#mobile-popup-content {
  background: white;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
 
#close-mobile-popup {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
 
/* Media query to show the popup only on mobile devices */
@media only screen and (max-width: 600px) {
  #mobile-popup-overlay {
    display: flex; /* Override to show the popup on mobile screens */
  }
}
