.ui-slider-horizontal {
    height: 8px;
    width: 100%;
    max-width: 420px;
    border-radius: 4px;
    background: #e0e0e0;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ui-slider .ui-slider-handle {
    height: 18px;
    width: 18px;
    top: -5px;
    border-radius: 50%;
    background: #4285f4;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: background 0.2s ease;
}

.ui-slider .ui-slider-handle:hover,
.ui-slider .ui-slider-handle:focus {
    background: #3367d6;
    outline: none;
}

.slider {
    float: right;
    margin-left: 15px;
}

.tooltip {
    position: absolute;
    z-index: 1020;
    display: block;
    padding: 0px;
    font-size: 12px;
    margin-top: -6px;
    bottom: 120%;
    margin-left: -2em;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.tooltip .tooltip-arrow {
    bottom: -8px;
    left: 50%;
    margin-left: -8px;
    border-top: 8px solid #fff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    position: absolute;
    width: 0;
    height: 0;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

.tooltip-inner {
    max-width: 200px;
    padding: 8px 12px;
    color: #333;
    text-align: center;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 4px;
    font-weight: bold;
}