/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #000000;
    background-image: url(QRCODEBG.png);
  }
  
  /* Main Content */
  main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .card {
    background: rgba(255, 255, 255, 0.767);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 600px;
  }
  /* Logo Image Styles */
.card img {
    width: 550px; /* Default size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below the logo */
    position:relative;
  }
  
  /* Responsive Logo Sizing */
  @media (max-width: 768px) {
    .card img {
      width: 420px; /* Smaller size for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .card img {
      width: 200px; /* Smaller size for mobile */
    }
  }
  
  
  h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  
  /* Input and Options Styles */
  .input-group {
    margin-bottom: 15px;
  }
  
  .input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .options-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  
  .dropdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .dropdown label {
    font-weight: bold;
  }
  
  .dropdown select, .dropdown input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  
  /* Button Styles */
  button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  #generate-btn {
    background-color: #007bff;
    color: #fff;
  }
  
  #generate-btn.download {
    background-color: #28a745;
  }
  
  #clear-btn {
    background-color: #dc3545;
    color: #fff;
    margin-top: 10px;
  }
  
  .hidden {
    display: none;
  }
  
  /* QR Display Styles */
  #qr-display {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  #qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #qr-code img {
    max-width: 100%;
    height: auto;
  }
  
  /* Color Changer Styles */
  #color-changer {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #color-changer label {
    font-weight: bold;
  }
  
  #color-changer input {
    width: 50px;
    height: 30px;
    border: none;
    background: none;
  }