
/* TRIVIA TIER SLIDERS */
input[type="range"].ud-chance-slider {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100%;
  height: 12px !important; /* Forces it to be thin */
  background: #ffffff; 
  border: 1px solid #ccc !important;
  border-radius: 5px !important;
  outline: none !important;
  margin: 15px 0 !important;
  padding: 0 !important;
}

input[type="range"].ud-chance-slider::-webkit-slider-runnable-track {
  background: transparent !important;
  border: none !important;
  height: 8px !important;
}

input[type="range"].ud-chance-slider::-moz-range-track {
  background: transparent !important;
  border: none !important;
  height: 8px !important;
}

input[type="range"].ud-chance-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  background: #333 !important;
  cursor: pointer !important;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4) !important;
  margin-top: -5px !important; 
  position: relative;
  z-index: 2;
}

/* SCAN RESPONSE MESSAGES */
/* Base style for all scan messages */
.ud-scan-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    background-color: #ffffff; 
    border: 2px solid;         
    font-weight: bold;
}

/* Remove default paragraph margin inside the box */
.ud-scan-message p {
    margin: 0;
    font-size: 1.1em;
}

/* Valid (First Scan) - Green */
.ud-scan-valid {
    border-color: #4caf50;
    color: #2e7d32; /* Darker green for text readability */
}

/* Scanned Before - Yellow/Orange */
.ud-scan-scanned {
    border-color: #ff8819;
    color: #ef6c00e5; /* Darker orange so it doesn't disappear on white */
}

/* Invalid/Fake - Red */
.ud-scan-invalid {
    border-color: #f44336;
    color: #c62828; /* Darker red */
}

/* AGE CHECK */
/* Age Gate Styles */
.ud-age-gate-wrapper {
    background: #fff;
    min-height: 400px;
}

.ud-age-btn-yes, .ud-age-btn-no {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 80px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    transition: transform 0.1s;
}

.ud-age-btn-yes {
    background-color: #ede19d; /* The yellowish color from your image */
}

.ud-age-btn-no {
    background-color: #fff;
    border: 1px solid #999;
}

.ud-age-btn-yes:hover, .ud-age-btn-no:hover {
    transform: scale(1.02);
    color: #000;
}