.controls-container {
  background-color: white;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
  margin: 20px;
  padding: 20px;
}

.controls-container input[type="text"],
.controls-container input[type="number"],
.controls-container textarea {
  width: 100%;
  padding: 6px 8px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  color: #333;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  outline: none;
}

.controls-container input[type="text"]:focus,
.controls-container input[type="number"]:focus,
.controls-container textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  background-color: #fff;
}

.controls-container button {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #4a90e2, #007bff);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  margin-top: 10px;
}

.controls-container button:hover {
  background: linear-gradient(135deg, #007bff, #4a90e2);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.5);
  transform: translateY(-2px);
}

.controls-container button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

.controls-container select {
  width: 100%;
  padding: 6px 8px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  border: 2px solid #ccc;
  border-radius: 8px;
  appearance: none;
  /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22gray%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M7%207l3-3%203%203H7z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  cursor: pointer;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.controls-container select:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
  outline: none;
}

.controls-container label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.group-control {
  border: #ccc 1px dashed;
  padding: 10px;
  margin: 5px;
  margin-bottom: 20px;
}

.group-control:hover {
  background-color: cornsilk;
}

.controls-container input[type="checkbox"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  padding-left: 32px;
  color: #333;
}

/* Hide default checkbox */
.controls-container input[type="checkbox"] input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Custom checkbox square */
.controls-container input[type="checkbox"] .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 20px;
  width: 20px;
  background-color: #f0f0f0;
  border: 2px solid #ccc;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Show checkmark when checked */
.controls-container input[type="checkbox"] input:checked+.checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

/* Checkmark tick */
.controls-container input[type="checkbox"] .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Show the tick */
.controls-container input[type="checkbox"] input:checked+.checkmark::after {
  display: block;
}

.button_icon {
  padding-left: 8px !important;
  padding-right: 5px !important;
  height: 37px;
}

i {
  font-size: small;
}