/**
 * Sekhlo Schema Settings Page Styles
 * Admin settings page styling for llms.txt, robots.txt, and .htaccess editors
 */

.sekhlo-settings-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sekhlo-settings-card h2 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sekhlo-code-editor {
    width: 100%;
    min-height: 350px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    padding: 15px;
    border: 1px solid #2c3338;
    border-radius: 4px;
    background: #1d2327;
    color: #f0f0f1;
    resize: vertical;
}

.sekhlo-code-editor:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.sekhlo-toggle-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #f6f7f7;
    padding: 15px;
    border-radius: 4px;
}

.sekhlo-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e5e5e5;
    color: #1d2327;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
}

.sekhlo-badge.ai {
    background: #e6f7ff;
    color: #0073aa;
}

.sekhlo-warning {
    background: #fff8e5;
    border-left: 4px solid #dba617;
    color: #1d2327;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.sekhlo-sitemap-options {
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #f0f0f1;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sekhlo-sitemap-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sekhlo-sitemap-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.sekhlo-option-actions {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.sekhlo-option-actions a {
    text-decoration: none;
    color: #2271b1;
}

.sekhlo-option-actions a:hover {
    color: #135e96;
}

.sekhlo-settings-card .description {
    color: #646970;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}