.gkt .gkt-field { margin-bottom: 12px; }
.gkt .gkt-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.gkt .gkt-actions { margin-top: 12px; }
.gkt .gkt-spinner { width: 36px; height: 36px; border: 4px solid #ddd; border-top-color: #2271b1; border-radius: 50%; animation: gktspin 1s linear infinite; }
@keyframes gktspin { to { transform: rotate(360deg);} }
.gkt .gkt-table { width: 100%; border-collapse: collapse; }
.gkt .gkt-table th, .gkt .gkt-table td { border: 1px solid #e5e5e5; padding: 6px 8px; font-size: 13px; }
.gkt .gkt-pre { white-space: pre-wrap; background: #f7f7f7; padding: 10px; border-radius: 4px; border: 1px solid #eee; }
.gkt-notice.gkt-error { background:#fdecea; border:1px solid #f5c6cb; padding:10px; }
.gkt .gkt-help-text { margin: 6px 0 0 0; font-size: 13px; color: #646970; font-style: italic; }


/* Enhanced formatting for LLM output */
.gkt-keyword-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gkt-keyword-table th {
    background: #2271b1;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #1a5a8a;
}

.gkt-keyword-table td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: white;
}

.gkt-keyword-table tr:nth-child(even) td {
    background: #f9f9f9;
}

.gkt-keyword-table tr:hover td {
    background: #f0f6fc;
}

#gkt-curation h2 {
    color: #2271b1;
    border-bottom: 2px solid #2271b1;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

#gkt-curation h3 {
    color: #135e96;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

#gkt-curation ul, #gkt-curation ol {
    margin-left: 20px;
    line-height: 1.8;
}

#gkt-curation li {
    margin-bottom: 8px;
}

#gkt-curation strong {
    color: #135e96;
}

#gkt-curation p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.gkt-json {
    background: #282c34;
    color: #abb2bf;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin: 15px 0;
}

.gkt-section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.gkt-export-buttons {
    margin-top: 15px;
}

.gkt-export-buttons button {
    margin-right: 10px;
}

