/* Basic layout and container */
.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin: 10px 0;
    font-size: 1em;
  }
  
  /* Dropdown and input fields */
  select, input[type="text"], input[type="url"], input[type="email"], input[type="tel"], input[type="number"], input[type="file"], input[type="color"], input[type="datetime-local"], textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin: 5px 0 20px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  input[type="file"] {
    padding: 5px;
  }
  
  /* Customization section */
  .customization {
    margin-top: 30px;
    border-top: 2px solid #ddd;
    padding-top: 20px;
  }
  
  .customization label {
    margin: 5px 0;
  }
  
  button {
    padding: 10px 20px;
    font-size: 1.1em;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    margin: 10px 0;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* QR preview area */
  #qrPreview {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px; /* Ensure there's enough space for centering */
    border: 1px solid #ddd; /* Optional: Add a border around the QR code preview */
    padding: 20px; /* Optional: Add padding to avoid touching the edges */
  }
  
  /* Error message styling */
  .error {
    color: red;
    font-size: 1em;
    margin-top: 10px;
  }
  
  /* Optional logo message */
  #logoMessage {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
  }
  
  #logoError {
    color: red;
    font-size: 1em;
    margin-top: 10px;
  }
  
  #logoPreview {
    max-width: 100px;
    margin-top: 10px;
  }
  
  /* Styling for the color input fields */
input[type="color"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border: none;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    border-radius: 50%; /* Makes the color picker appear as a circle */
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  input[type="color"]:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  }
  
  label {
    font-size: 1em;
    margin: 10px 0;
  }
  
  /* For all other form elements to ensure uniformity */
  select, input[type="text"], input[type="url"], input[type="email"], input[type="tel"], input[type="number"], input[type="file"], input[type="datetime-local"], textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin: 5px 0 20px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  
  .ad-container {
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 20px; /* space between ads */
  margin-top: 20px;
}

.left-adqr {
  width: 300px; /* or your preferred width */
  min-height: 250px;
  background-color: #eaeaea;
  border-radius: 8px;
  padding: 10px;
  flex-shrink: 0;
  position: relative;
}



.ad-container {
  display: flex;
  justify-content: flex-start; /* push everything to the left */
  gap: 5px; /* space between ads */
  margin-top: 20px;
}

.left-ad {
  width: 200px; /* or your preferred width */
  min-height: 150px;
  background-color: #eaeaea;
  border-radius: 8px;
  padding: 10px;
  flex-shrink: 0;
  position: relative;
}


