#tab-colors {
  color: #333;
}

#tab-colors h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #222;
}

#tab-colors form {
   max-width: 480px;
}

#tab-colors .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

#tab-colors label {
  flex: 1;
  font-weight: 500;
  font-size: 1rem;
  color: #444;
}

#tab-colors input[type="color"] {
  width: 65px;
  height: 36px;
  border: none;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  background: none;
  outline: none;
  transition: box-shadow 0.15s;
}

#tab-colors .form-actions {
  text-align: center;
  margin-top: 30px;
}

#tab-colors button {
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  #tab-colors form {
    padding: 20px;
  }
  #tab-colors .form-row {
    flex-direction: column;
    align-items: flex-start;
  }
  #tab-colors label {
    margin-bottom: 8px;
  }
}