html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: grid;
    place-items: center;
    background-color: rgb(199, 255, 203);
    font-family: 'Barlow', Tahoma, Geneva, Verdana, sans-serif;
}

.jacks-button {
    background: linear-gradient(135deg, #39ff7b, #5bbc7b);
    border-radius: 50px;
    padding: 18px 32px;
    cursor: pointer;
    font-size: 16px;
    border: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Barlow', Tahoma, Geneva, Verdana, sans-serif;
}

.jacks-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.jacks-button:active {
    transform: scale(0.9);
    box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

.jacks-slider {
    width: 400px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 400px;
    height: 20px;
    background: linear-gradient(135deg, #39ff7b, #5bbc7b);
    border-radius: 100px;
    border: none;
    outline: none;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    opacity: 0.7;
}

.slider:hover {
    transition: opacity 0.3s ease;
    opacity: 0.8;
    cursor: grab;
}

.slider:active {
    transition: opacity 0.3s ease;
    opacity: 1;
    cursor: grabbing;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: grab;
    border-radius: 100px;
    transition: transform 0.2s ease-in-out;
    transform: scale(1);
    opacity: 0.5;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.4);
    opacity: 1; 
}

.slider::-webkit-slider-thumb:active {
    transform: scale(0.9);
    cursor: grabbing;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: grab;
    border-radius: 100px;
    border: none;
    transition: transform 0.2s ease-in-out;
    transform: scale(1); 
    opacity: 0.5;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.4);
    opacity: 1;
}

.slider::-moz-range-thumb:active {
    transform: scale(0.9);
    cursor: grabbing;
}

.slider::-ms-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: grab;
    border-radius: 100px;
    border: none;
    transition: transform 0.2s ease-in-out;
    transform: scale(1); 
    opacity: 0.5;
}

.slider::-ms-thumb:hover {
    transform: scale(1.4);
    opacity: 1;
}

.slider::-ms-thumb:active {
    transform: scale(0.9);
    cursor: grabbing;
}


input[type="text"] {
    background: linear-gradient(135deg, #39ff7b, #5bbc7b);
    margin: 10px;
    border: none;
    cursor: auto;
    width: 200px;
    padding: 18px 32px;
    font-size: 16px;
    border-radius: 100px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

input[type="text"]:hover {
    transform: scale(1.1);    
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

input[type="text"]:active {
    transform: scale(0.9);    
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}