* {
  box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #fff;
  color: #111; }

h1 {
  margin: 0 0 24px 0;
  font-size: 28px;
  font-weight: 600; }

.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  height: 100vh; }
  @media (max-width: 900px) {
    .layout {
      grid-template-columns: 1fr;
      height: auto; } }

textarea {
  width: 100%;
  height: 45vh;
  resize: vertical;
  padding: 14px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease; }
  textarea:focus {
    border-color: #000; }

.controls {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap; }

button {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s ease; }
  button.secondary {
    background: #fff;
    color: #000; }
  button:hover {
    opacity: 0.85; }
  button:disabled {
    opacity: 0.5;
    cursor: not-allowed; }

.results-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px; }

#results {
  height: 75vh;
  overflow: auto;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px; }

.result-entry {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 12px;
  background: #fff; }
  .result-entry:last-child {
    margin-bottom: 0; }

.result-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px; }
  .result-actions button {
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px; }
    .result-actions button.secondary {
      border-color: #bbb; }

.field {
  display: inline-block;
  vertical-align: top;
  margin-right: 16px;
  margin-bottom: 12px; }

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600; }

.field select,
.field input[type="range"] {
  width: 100%; }

.loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100; }

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #ddd;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite; }

@keyframes spin {
  to {
    transform: rotate(360deg); } }

/*# sourceMappingURL=style.css.map */
