#ytv-calculator {
    display: flex;
    gap: 30px;
    padding: 20px;
    max-width: 900px;
    margin: 40px auto;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.ytv-left, .ytv-right {
    flex: 1 1 400px;
}

.ytv-left label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
}


/* Add this at the very end of style.css */
#budget-slider .noUi-handle {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background-color: #0073aa;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease;
}

#budget-slider .noUi-handle:hover {
  background-color: #005c87;
}

/* Track style */
#budget-slider .noUi-target {
  background: #ddd;
  border-radius: 6px;
  border: none;
  height: 8px;
}

#budget-slider .noUi-connect {
  background: #00aaff;
}



/* noUiSlider - Customize Thumbs (Handles) */
.noUi-handle {
    height: 20px;
    width: 20px;
    border-radius: 50%;               /* Make circle */
    background: #0073aa;              /* Blue (you can change) */
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    transition: background 0.2s ease;
}

.noUi-handle:hover {
    background: #005c87;
}

/* Slider track bar */
.noUi-connect {
    background: #00aaff;
}

/* Slider background */
.noUi-target {
    background: #e4e4e4;
    border: none;
    border-radius: 6px;
    height: 8px;
    margin-top: 15px;
}


#budget-slider .noUi-handle {
  height: 22px !important;
  width: 22px !important;
  border-radius: 50% !important;
  background-color: #0073aa !important;
}



.noUi-handle:after, .noUi-handle:before {
    background: none;
}

