#sorting {
  margin-top: 10px;
  margin-left: 15px;
  width: 80%;
  height: 400px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #b5faff, #97baea);
  font-family: Arial, sans-serif;
  padding-top: 20px;
}

.sliderContainer {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 400px;
}

.sliderContainer label {
  display: block;
  margin-bottom: 15px;
  color: black;
  font-size: 1.2rem;
  font-weight: bold;
}

.slider {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  outline: none;
  transition: background 0.3s;
}

.sliderValue {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
}

.btn {
  margin-top: 16px;
  font-family: Arial, sans-serif;
  height: 40px;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 5px;
  border: rgba(0,0,0,0.2) solid 1px;
  border-radius: 5px;
  background-color: rgba(0,0,0,0.2);
  color: white;
  transition: background-color 0.26s, color 0.26s;;
}

.btn:hover {
  background-color: rgba(0,0,0,0.4);
}

.btn:active {
  color: rgb(155, 255, 198);
  background-color: rgba(0, 0, 0, 0.6);
}

#inputs {
  margin-left: 5px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btnContainer {
  margin-top: 15px;
  margin-left: 5%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 400px;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

#reset {
  margin-bottom: 15px;
}

.userin {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-top: 20px;
}

p {
  font-size: larger;
}

.image {
  max-width: 30%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  filter: blur(0.3px);
  transition: transform 0.35s filter 0.2s ease;
}

.image:hover {
  transform: scale(1.005);
  filter: blur(0px);
}