/* settings.css — uzupełnienie do g_styles.css z jednostkami względnymi */

.necessary-data {
  background: var(--surface-2);
  border: 0.0625rem solid rgba(255,255,255,0.06); /* 1px */
  color: #e8eef8;
  border-radius: 0.5rem; /* 8px */
  padding: 0.375rem 0.5rem; /* 6px 8px */
  width: 100%;
}

.necessary-data[type=checkbox],
.necessary-data[type=range] {
  width: auto;
}

label.row {
  justify-content: space-between;
  margin-bottom: 0.75rem; /* 12px */
}

label.row textarea {
  flex: 2;             /* lub inna proporcja, żeby input był większy */
  width: auto;  
}

label.row select {
  flex: 2;             /* lub inna proporcja, żeby input był większy */
  width: auto;  
}

label.row input[type="text"],
label.row input[type="number"] {
  flex: 2;             /* lub inna proporcja, żeby input był większy */
  width: auto;  
}

textarea.necessary-data {
  resize: vertical;
}

.export-btn {
  background: #0f172a;
  color: #e6eef6;
  border: 0.0625rem solid #6ee7b7;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  margin: 0 auto;
  display: block;
}
.export-btn:hover {
  background: #1e293b;
}