/* BirdyChat — settings page only */
#birdychat-wrap { max-width: 860px; padding-top: 20px; }

#birdychat-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
#birdychat-header a { text-decoration: none; }
#birdychat-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}
#birdychat-header h1 { margin: 0 0 4px; font-size: 1.8rem; color: #1d2327; }
.birdychat-subtitle { margin: 0; color: #646970; font-size: .95rem; }

#birdychat-card {
    margin-top: 20px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 28px 32px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

#birdychat_js_code {
    width: 100%;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: .85rem;
    line-height: 1.6;
    padding: 14px 16px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    background: #fafafa;
    color: #1d2327;
    resize: vertical;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}
#birdychat_js_code:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, .2);
    outline: none;
    background: #fff;
}

#birdychat-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}
#birdychat-save-btn { display: flex; align-items: center; gap: 6px; }

.birdychat-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .875rem;
    font-weight: 500;
}
.birdychat-status.active   { color: #00a32a; }
.birdychat-status.inactive { color: #646970; }

#birdychat-info {
    margin-top: 20px;
    background: #f0f6fc;
    border: 1px solid #c8dcf0;
    border-radius: 8px;
    padding: 20px 24px;
}
#birdychat-info ul {
    margin: 0 0 14px 18px;
    color: #3c434a;
    font-size: 1.1rem;
    list-style-type: decimal;
}
#birdychat-info li { margin: 10px; }