diff --git a/index.html b/index.html
index f2bcd52..fe44ef3 100644
--- a/index.html
+++ b/index.html
@@ -95,6 +95,56 @@
font-size: 14px;
backdrop-filter: blur(10px);
}
+
+ .slider-group {
+ margin: 8px 0;
+ }
+
+ .slider-group label {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 4px;
+ font-size: 13px;
+ }
+
+ .slider-group input[type="range"] {
+ width: 100%;
+ height: 6px;
+ border-radius: 3px;
+ background: rgba(255, 255, 255, 0.2);
+ outline: none;
+ -webkit-appearance: none;
+ appearance: none;
+ }
+
+ .slider-group input[type="range"]::-webkit-slider-thumb {
+ -webkit-appearance: none;
+ appearance: none;
+ width: 14px;
+ height: 14px;
+ border-radius: 50%;
+ background: #4a9eff;
+ cursor: pointer;
+ }
+
+ .slider-group input[type="range"]::-moz-range-thumb {
+ width: 14px;
+ height: 14px;
+ border-radius: 50%;
+ background: #4a9eff;
+ cursor: pointer;
+ border: none;
+ }
+
+ .slider-value {
+ background: rgba(255, 255, 255, 0.15);
+ padding: 2px 6px;
+ border-radius: 3px;
+ font-size: 11px;
+ min-width: 35px;
+ text-align: center;
+ }
+ }