/* Pekosoft Settings */
/* pekosoft.net/css/settings.css */

.settings {
  max-width: var(--maxwidth);
  margin-top: 16px;
  padding: 16px 16px;
  display: flex;
  flex-direction: column; /* Stack rows vertically */
  gap: 16px; /* Add spacing between rows */
  align-items: center; /* Center child elements horizontally */
}

.setting-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 180px;
  max-width: 320px;
  width: 100%;
}

.setting-row>label {
  flex: 0 0 auto;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
}

.setting-row>:is(input:not([type="checkbox"]), select) {
  flex: 1;
  min-width: 80px;
}

.setting-row>input[type="checkbox"] {
  flex: 0 0 auto;
  margin-right: 0;
}

/* END OF FILE */
