.form-section {
  margin-top: 1.52rem;
  display: flex;
  flex-direction: column;
  gap: 1.12rem;
  @media (max-width: 768px) {
    margin-top: 0.8rem;
    gap: 0.8rem; /* tự thêm đợi anh Sang cho ý kiến */
  }
}

.form-group {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.form-group .config-title-field {
  font-size: 1rem;
}

.config-select {
  background: var(--white) url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0H0L6 8L12 0Z' fill='%23939393'/%3E%3C/svg%3E") no-repeat;
  padding: 0.1rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-position: right 0.6rem center;
  color: var(--black);
  min-width: 7.16rem;
  cursor: pointer;
  font-weight: 400;
  width: 70%;
  height: 2.72rem;
  font-size: 1rem;
  appearance: none;
}
.volume-control-group {
  align-items: center;
}
.volume-control-group .config-title-field {
  margin-top: -1.2rem;
}

.volume-control {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.volume-control-slider {
  width: 100%;
  height: 0.16rem;
  background: linear-gradient(to right, var(--gray-500) var(--volume-percentage, 33.33%), #D9D9D9 var(--volume-percentage, 33.33%), #D9D9D9 100%);
  border-radius: 0.08rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: none;
}
.volume-control-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--white);
  border: 2px solid var(--gray-500);
  border-radius: 50%;
  cursor: pointer;
  transition: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.volume-slider::-webkit-slider-thumb:hover {
  border-color: var(--primary-color);
  transform: none;
}
.volume-slider::-webkit-slider-thumb:active {
  border-color: var(--primary-color);
  transform: none;
}
.volume-config-value {
  font-size: 0.8rem;
  color: rgba(136, 136, 136, 1);
  font-weight: 400;
}

.config-advenced-about-us {
  height: 2.72rem;
  display: flex;
  justify-content: space-between;
  @media (max-width: 768px) {
    height: 2rem;
  }
}
.config-advenced-button, .about-us-button {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}
.config-advenced-button img, .about-us-button img {
  width: 1.2rem;
  height: 1.2rem;

}