/* (C) Ulrich Schwebinghaus 2025 */

.uebungsbox
{
  height:570px;  
}

.textbox
{
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}

.slide
{
  display: flex;
  align-items: center;
  width: 100%;
}

.slide input[type="range"] {
  width: 75%; 
  margin: 0 10px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: #3498db;
  border-radius: 4px;
  outline: none;
}

/* WebKit Thumb (Chrome, Safari, iOS) */
.slide input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 15px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Firefox Thumb */
.slide input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 15px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Firefox Track */
.slide input[type="range"]::-moz-range-track {
  height: 6px;
  background: #3498db;
  border-radius: 4px;
}

.slide label
{
  width: 25%;
  margin-left: 8px;
  white-space: nowrap;
  text-align: right;
}

.slider-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
} 

.button-group {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 5px;
  background: #6c7ef0;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  width: 140px;
}

.btn:hover {
  background: #6c7eff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn:active {
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}