/* ===== CSS VARIABLES ===== */
:root {
  --ink         : #2c3e50;
  --ink-light   : #4a4a4a;
  --ink-faint   : #8a8a8a;
  --paper       : var(--color-bg-app);
  --paper-warm  : var(--color-bg-section);
  --ui-bg       : var(--color-bg-app);
  --ui-border   : var(--color-border-panel);
  --accent      : var(--color-accent);
  --accent-light: var(--color-accent-hover);
  --rule        : var(--color-border-panel);
  --rule-dark   : var(--color-border-input);
  --shadow      : 0 2px 20px rgba(0,0,0,0.08),
                  0 1px 4px rgba(0,0,0,0.04);
  --ui-font     : var(--font-ui);
  --header-height: 60px;
  --radius-sm   : var(--radius-md);
  --radius-md   : var(--radius-lg);
}

[data-theme="dark"] {
  --ink       : #deddda;
  --ink-light : #9a9996;
  --ink-faint : #77767b;
  --paper     : #1a1a1a;
  --paper-warm: #2d2d2d;
  --ui-bg     : #1a1a1a;
  --ui-border : #3d3d3d;
  --accent    : #e07b39;
  --rule      : #3d3d3d;
  --rule-dark : #4d4d4d;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ui-font);
    background: var(--paper);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== HEADER APLIKASI ===== */
.app-header {
    background: rgba(18, 16, 14, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--paper);
    padding: 0 28px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 32px rgba(0,0,0,0.3);
}

.app-title {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.app-title-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.app-name {
    font-family: var(--ui-font);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}

.app-subtitle {
    font-family: var(--ui-font);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.header-action-bar {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.header-action-bar .btn {
    padding: 8px 12px;
    font-size: 0.75rem;
    height: 36px;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.header-action-bar .btn-gabung {
    width: auto;
    box-shadow: 0 2px 8px rgba(224, 123, 57, 0.35);
}

.btn-simpan-all {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.btn-simpan-all:hover {
    background: rgba(255, 255, 255, 0.26);
}

.header-action-bar .btn-tambah-paste {
    background: rgba(255, 255, 255, 0.12);
}

.header-action-bar .btn-tambah-paste:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* ===== BUTTONS ===== */
.btn {
    font-family: var(--ui-font);
    font-size: 0.85rem;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled::before {
    display: none;
}

.btn-help {
    background: var(--ink-light);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-help:hover {
    background: var(--ink);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.btn-dashboard {
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(224,123,57,0.3);
    white-space: nowrap;
}

.btn-dashboard:hover {
    background: var(--accent-light);
    box-shadow: 0 4px 16px rgba(224,123,57,0.5);
    transform: translateY(-1px);
}

.btn-dashboard:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(224,123,57,0.3);
}

/* ===== MAIN LAYOUT ===== */
.app-body {
    flex: 1;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    height: calc(100vh - var(--header-height));
}

/* ===== PANEL KIRI ===== */
.panel-left {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--rule-dark);
    background: var(--ui-bg);
    height: calc(100vh - 60px);
    overflow: hidden;
}

/* ===== PANEL KANAN ===== */
.panel-right {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    height: calc(100vh - 60px);
    overflow: hidden;
}

/* ===== PANEL LABEL ===== */
.panel-label {
    padding: 12px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    border-bottom: 1px solid var(--rule);
    background: linear-gradient(135deg, var(--paper-warm) 0%, var(--paper) 100%);
    font-family: 'JetBrains Mono', monospace;
    border-left: 3px solid var(--accent);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    opacity: 0.3;
}

/* ===== PANEL CONTENT ===== */
.panel-content {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    display: block;
}

.form-container {
    padding: 20px;
}

/* ===== UPLOAD GRID ===== */
.upload-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 16px;
}

.upload-drop,
.upload-files {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.upload-files-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 8px;
}

/* ===== DROPZONE ===== */
.dropzone {
    border: 2px dashed var(--rule-dark);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.18s ease;
    background: var(--paper-warm);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(224, 123, 57, 0.02) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropzone:hover {
    border-color: var(--accent);
    background: rgba(224, 123, 57, 0.05);
    transform: scale(1.01);
}

.dropzone:hover::before {
    opacity: 1;
}

.dropzone.dragover {
    border-color: var(--accent);
    background: rgba(224, 123, 57, 0.1);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(224, 123, 57, 0.2);
}

.dropzone.dragover::before {
    opacity: 1;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dropzone-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    margin-bottom: 8px;
}

.dropzone p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 4px 0;
}

.dropzone span {
    font-size: 0.8rem;
    color: var(--ink-faint);
    font-style: italic;
}

.dropzone-status {
    font-size: 0.75rem;
    color: var(--ink-faint);
    margin-top: 8px;
    padding: 4px 8px;
    background: var(--paper-warm);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ===== FILE LIST ===== */
.file-list {
    margin-bottom: 0;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    background: var(--paper);
    flex: 1;
}

.file-list-empty {
    text-align: center;
    color: var(--ink-faint);
    font-style: italic;
    font-size: 0.85rem;
    padding: 20px;
    background: var(--paper-warm);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--rule);
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    gap: 12px;
    transition: all 0.15s ease;
}

.file-item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 4px rgba(224, 123, 57, 0.1);
    transform: translateY(-1px);
}

.file-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.file-item-name {
    flex: 1;
    font-size: 0.85rem;
    color: var(--ink);
    font-weight: 500;
    word-break: break-all;
}

.file-item-remove {
    flex-shrink: 0;
    background: none;
    border: 1px solid var(--color-btn-danger);
    color: var(--color-btn-danger);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.file-item-remove:hover {
    background: var(--color-btn-danger);
    color: white;
}

/* ===== DIVIDER OR ===== */
.divider-atau {
    text-align: center;
    position: relative;
    margin: 16px 0;
    color: var(--ink-faint);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.divider-atau::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--rule);
    z-index: 0;
}

.divider-atau span {
    position: relative;
    background: var(--ui-bg);
    padding: 0 12px;
    z-index: 1;
}

/* ===== PASTE SECTION ===== */
.paste-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--rule);
    overflow: visible;
}

.paste-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    background: var(--ui-bg);
    z-index: 10;
    padding-top: 8px;
}

.paste-header h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.paste-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.paste-counter {
    font-size: 0.75rem;
    color: var(--ink-faint);
    background: var(--paper-warm);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.btn-tambah-paste {
    background: var(--ink-light);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
}

.btn-tambah-paste:hover {
    background: var(--ink);
    transform: translateY(-1px);
}

/* ===== PASTE ITEM ===== */
.paste-item {
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 0;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.paste-item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(224, 123, 57, 0.1);
}

.paste-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: var(--paper-warm);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.paste-item-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}

.paste-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-paste {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--rule-dark);
    background: var(--paper);
    color: var(--ink-faint);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.btn-close-paste:hover {
    background: var(--color-btn-danger);
    color: white;
    border-color: var(--color-btn-danger);
}

.paste-item-status {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.status-pending {
    background: #ffeeba;
    color: #856404;
}

.status-valid {
    background: #d4edda;
    color: #155724;
}

.status-invalid {
    background: #f8d7da;
    color: #721c24;
}

.paste-item textarea {
    width: 100%;
    min-height: 220px;
    max-height: 460px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    resize: vertical;
    border: 1px solid var(--ui-border);
    border-radius: 0;
    padding: 10px;
    background: var(--color-bg-panel);
    color: var(--ink);
    line-height: 1.5;
    overflow-y: auto;
}

.paste-item textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.1);
}

.paste-item-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn-simpan-paste {
    flex: 1;
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
}

.btn-simpan-paste:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.btn-simpan-paste:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-hapus-paste {
    flex: 1;
    background: var(--color-btn-danger);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
}

.btn-hapus-paste:hover {
    background: #c62828;
    transform: translateY(-1px);
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    margin-top: 20px;
}

.btn-gabung {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgba(224, 123, 57, 0.4);
}

.btn-gabung:hover:not(:disabled) {
    background: var(--accent-light);
    box-shadow: 0 4px 20px rgba(224, 123, 57, 0.6);
    transform: translateY(-2px);
}

/* ===== PREVIEW CONTAINER ===== */
.preview-container {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-placeholder {
    text-align: center;
    color: var(--ink-faint);
    font-style: italic;
    font-size: 0.9rem;
    padding: 60px 20px;
    line-height: 1.6;
}

#jsonPreview {
    flex: 1;
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--ink);
    white-space: pre-wrap;
    word-wrap: break-word;
}

#jsonPreview code {
    font-family: inherit;
}

/* ===== BUTTON GROUP ===== */
.button-group {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
}


/* ===== PANEL FOOTER ===== */
.panel-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--rule);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.02) 100%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.panel-footer .btn {
    flex: 1;
}

/* ===== EDITOR STYLING ===== */
.editor-container {
    padding: 1rem;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Grup bertingkat (untuk nested object) */
.editor-group {
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.editor-group-title {
    padding: 0.5rem 1rem;
    background: var(--paper-warm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-faint);
    border-bottom: 1px solid var(--rule);
}

.editor-group-body {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Field individu */
.editor-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.editor-label {
    font-size: 0.75rem;
    color: var(--ink-faint);
    font-weight: 500;
}

.editor-field input[type="text"],
.editor-field input[type="number"],
.editor-field select {
    width: 100%;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--rule-dark);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    font-family: var(--ui-font);
    font-size: 0.875rem;
    box-sizing: border-box;
}

.editor-field textarea {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--rule-dark);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    font-family: var(--ui-font);
    font-size: 0.875rem;
    resize: vertical;
    line-height: 1.6;
    box-sizing: border-box;
    min-height: 80px;
}

/* Array items */
.editor-array-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.editor-array-item input {
    flex: 1;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--rule-dark);
    border-radius: var(--radius-sm);
    background: var(--paper);
    color: var(--ink);
    font-size: 0.875rem;
}

.btn-hapus-item {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--rule-dark);
    background: var(--paper-warm);
    color: var(--ink-faint);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-tambah-item {
    font-size: 0.75rem;
    color: var(--accent);
    background: none;
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
    padding: 0.3rem 0.75rem;
    cursor: pointer;
    margin-top: 0.25rem;
    width: fit-content;
}

/* Tombol editor */
.btn-edit {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-selesai-edit {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-batal-edit {
    background: transparent;
    border: 1px solid var(--rule-dark);
    color: var(--ink-light);
}

.editor-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0 0;
}

.btn-download {
    flex: 1;
    background: var(--color-btn-success);
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.btn-download:hover {
    background: var(--color-btn-success-hv);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4);
    transform: translateY(-2px);
}

.btn-copy {
    flex: 1;
    background: var(--ink-light);
    color: white;
    border: 1px solid var(--ink-light);
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-copy:hover {
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .app-body {
        grid-template-columns: 1fr 1fr;
    }

    .app-name {
        font-size: 1.2rem;
    }

    .app-subtitle {
        font-size: 0.6rem;
    }

    .header-action-bar .btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        height: 32px;
        min-width: 130px;
    }

    .btn-help {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}

@media (max-width: 900px) {
    .app-header {
        height: auto;
        padding: 10px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .app-body {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .panel-left,
    .panel-right {
        height: auto;
        min-height: 0;
    }

    .panel-content {
        max-height: none;
        overflow: visible;
    }

    .panel-footer {
        position: sticky;
        bottom: 0;
        z-index: 20;
        background: var(--ui-bg);
    }
}

@media (max-width: 768px) {
    .app-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .panel-left {
        border-right: none;
        border-bottom: 1px solid var(--rule-dark);
    }

    .app-header {
        padding: 0 16px;
    }

    .app-name {
        font-size: 1.2rem;
    }

    .app-subtitle {
        font-size: 0.6rem;
    }

    .button-group {
        flex-direction: column;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .panel-footer {
        flex-direction: column;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .header-action-bar {
        flex: 1;
    }

    .header-action-bar .btn {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .app-subtitle {
        display: none;
    }

    .header-action-bar {
        width: 100%;
    }

    .header-actions {
        gap: 6px;
    }

    .upload-grid {
        gap: 12px;
    }

    .paste-item textarea {
        min-height: 200px;
    }
}
