      .level-selector button {
      background: transparent;
      border: none;
      padding: 5px;
      text-align: center;
    }

    .level-selector svg {
      width: 64px;
      height: 64px;
      margin: auto;
      display: block;
    }

    .level-selector .active {
      /* outline: 2px solid #DE9406; */
      border-radius: 8px;
      border: 2px solid #DE9406;
    }
    .qr-preview {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
.btn-generate {
    background: linear-gradient(45deg, #DE9406, #00c6ff);
    border: none;
    color: white;
    padding: 12px 0;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.qrcodeDisplay {
    display: none;
   
}

.card {
  background-color: #fdfdfd;
  border-radius: 1rem;
  transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


/* Active button - filled style */
.btn-group .btn.active {
    background-color: #DE9406;   /* Bootstrap primary */
    color: #fff;
    border-color: #DE9406;
}

/* Inactive button - outlined style */
.btn-group .btn:not(.active) {
    background-color: transparent;
    color: #DE9406;
    border-color: #DE9406;
}
.btn-primary {
    background-color: #DE9406;
    border-color: #DE9406;
    color: white;
}
/* Hover effect for inactive button */
.btn-group .btn:not(.active):hover {
    background-color: #e6f0ff;
}
.qr-container {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid #DE9406;
}

#qrCode {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 15px;
    border: 10px solid white;
}

.input-group-text {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
}

.btn-action {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download {
    background-color: #28a745;
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-discord {
    background-color: #7289DA;
    color: white;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
 
/* Base slider track */
#sizeInput {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  outline: none;
}

/* WebKit (Chrome, Edge, Safari) */
#sizeInput::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: #DE9406; /* Bootstrap primary */
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

#sizeInput::-webkit-slider-thumb:hover {
  background: #DE9406;
}

/* Firefox */
#sizeInput::-moz-range-thumb {
  height: 20px;
  width: 20px;
  background: #DE9406;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#sizeInput::-moz-range-thumb:hover {
  background: #DE9406;
}

/* Internet Explorer */
#sizeInput::-ms-thumb {
  height: 20px;
  width: 20px;
  background: #DE9406;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
 /* Chrome, Edge, Safari */
#imageInput::file-selector-button {
  background-color: #DE9406; /* Yellow */
  color: #fff;               /* White text */
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* Firefox */
#imageInput::-moz-file-selector-button {
  background-color: #DE9406;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

