@charset "utf-8";

#calculator { text-align: center; background-color: rgb(255, 255, 255); width: 100%; font-family: Arial, sans-serif; }

#slider-container { position: relative; margin-bottom: 20px; }

#slider { width: 100%; opacity: 1; appearance: none; height: 20px; background: rgb(111, 176, 101); border-radius: 10px; outline: none; position: relative; z-index: 2; }

#slider::-webkit-slider-thumb { appearance: none; width: 26px; height: 26px; background: rgb(255, 255, 255); border-radius: 50%; cursor: pointer; border: 3px solid rgb(111, 176, 101); }

#current-value { width: 30%; margin: 10px auto; padding: 4px 0px; font-size: 18px; border-left: 2px solid rgb(111, 176, 101); border-right: 2px solid rgb(111, 176, 101); border-bottom: 2px solid rgb(111, 176, 101); }

.slider-labels { width: 100%; display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }

.slider-labels span { position: relative; }

.slider-labels span::before { content: ""; position: absolute; width: 1px; height: 10px; background: rgb(0, 0, 0); top: 22px; left: 50%; transform: translateX(-50%); }

.result { font-size: 20px; margin-bottom: 10px; }
