/* Create World Page Styles */
.create-world-container {
  width: 100%;
}

.create-world-form {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 30px;
  color: white;
  max-width: 100%;
}

.create-world-form h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-container {
  position: relative;
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #d3d3d3;
  outline: none;
  margin-bottom: 20px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.slider-value {
  position: absolute;
  right: 0;
  top: -30px;
  color: white;
}

.form-actions {
  text-align: right;
  margin-top: 40px;
}

.btn-create {
  padding: 10px 30px;
  background-color: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-create:hover {
  background-color: #d0d0d0;
}