
/* --- Range Slider Styling --- */
.wpforms-container input[type="range"] {
    /* Basic resets for all browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3; /* Initial background color */
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

/* --- Thumb Styling (Red) --- */
/* WebKit (Chrome, Safari, Edge) */
.wpforms-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #005A9A;
    cursor: pointer;
    margin-top: 0px; /* Adjust thumb position vertically */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Firefox */
.wpforms-container input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #005A9A;
    cursor: pointer;
    border: none;
}

/* IE */
.wpforms-container input[type="range"]::-ms-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #005a9a;
    cursor: pointer;
}

/* --- Track Styling (15px high) --- */
/* WebKit (Chrome, Safari, Edge) */
.wpforms-container input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 25px;
    cursor: pointer;
    background: transparent;
    border-radius: 8px;
}

/* Firefox */
.wpforms-container input[type="range"]::-moz-range-track {
    width: 100%;
    height: 25px;
    cursor: pointer;
    background: transparent;
    border-radius: 8px;
}

div.blau h2 {
    color: #005a9a !important;
}