/* ============================================
   LLMS-TXT-OLUSTURUCU.HTML
   ============================================ */

.main-content-no-padding {
    padding-top: 0 !important;
}

.llms-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.llms-card {
    background: var(--surface);
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 4px 4px 0 #1a1a1a;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.llms-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #1a1a1a;
}

.llms-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: -24px -24px 16px -24px;
    padding: 12px 16px;
    border-bottom: 2px solid #1a1a1a;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.llms-card-live {
    background: #e0d4fc;
}

.llms-card-live .llms-card-title {
    background: #e0d4fc;
}

.llms-card-manual {
    background: #f8f0b8;
}

.llms-card-manual .llms-card-title {
    background: #f8f0b8;
}

.llms-card-preview {
    background: #b8f0ef;
}

.llms-card-preview .llms-card-title {
    background: #b8f0ef;
}

.llms-help {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.llms-label {
    display: block;
    font-weight: 600;
    margin: 0 0 6px;
}

.llms-input,
.llms-textarea,
.llms-preview {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #1a1a1a;
    background: #fff;
    font: inherit;
    margin: 0 0 12px;
}

.llms-textarea {
    min-height: 96px;
    resize: vertical;
}

.llms-preview {
    min-height: 280px;
    font-family: ui-monospace, "IBM Plex Mono", Menlo, Consolas, monospace;
    font-size: 0.92rem;
    line-height: 1.5;
    white-space: pre;
    resize: vertical;
}

.llms-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.llms-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-weight: 600;
    cursor: pointer;
}

.llms-check input {
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
}

.llms-notice {
    margin: 12px 0 0;
    padding: 10px 12px;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    box-shadow: 2px 2px 0 #1a1a1a;
    background: #ffd6b8;
    font-weight: 600;
}

.llms-notice[hidden] {
    display: none;
}

.llms-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 12px;
}

.llms-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr auto;
    gap: 8px;
    align-items: start;
}

.llms-row .llms-input {
    margin: 0;
}

@media (max-width: 768px) {
    .llms-row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-color-scheme: dark) {
    .llms-card,
    .llms-input,
    .llms-textarea,
    .llms-preview,
    .llms-notice {
        border-color: #f0ede8;
        box-shadow: 4px 4px 0 #f0ede8;
    }
    .llms-input,
    .llms-textarea,
    .llms-preview {
        box-shadow: 2px 2px 0 #f0ede8;
        background: #1e1e1e;
        color: #f0ede8;
    }
    .llms-card-live,
    .llms-card-live .llms-card-title { background: rgba(224, 212, 252, 0.14); }
    .llms-card-manual,
    .llms-card-manual .llms-card-title { background: rgba(248, 240, 184, 0.12); }
    .llms-card-preview,
    .llms-card-preview .llms-card-title { background: rgba(184, 240, 239, 0.12); }
    .llms-notice { background: rgba(255, 214, 184, 0.16); }
}

.page-llms-txt-generator .gradient-text-green,
.page-llms-txt-generator .gradient-text-blue,
.page-llms-txt-generator .gradient-text-purple {
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.page-llms-txt-generator .gradient-text-green { color: #047857 !important; }
.page-llms-txt-generator .gradient-text-blue { color: #1d4ed8 !important; }
.page-llms-txt-generator .gradient-text-purple { color: #6d28d9 !important; }
