/* Add Sessions form */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

input[type="number"],
input[type="text"],
input[type="password"],
input[type="range"],
select.select-dropdown {
  width: 300px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

input[type="number"] {
  width: 50px;
}

input[type="range"] {
  width: 300px;
  margin-bottom: 20px;
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-moz-range-track,
input[type="range"]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: #333;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-ms-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  background: #ff4d27;
  -webkit-appearance: none;
  margin-top: -5px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-ms-fill-lower,
input[type="range"]::-ms-fill-upper {
  background: #333;
  border-radius: 10px;
}

button[type="submit"] {
  background-color: #333;
  color: #fff;
  padding: 16px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:hover {
  background-color: #f1f1f1;
  color: #333;
}

button[type="submit"]:active {
  transform: translateY(2px);
}

.status-bar {
  position: fixed;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.success {
  background-color: #4CAF50;
}

.error {
  background-color: #F44336;
}
