*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --sidebar-bg: #1a2332;
    --sidebar-width: 220px;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --success: #10b981;
    --danger: #ef4444;
    --text: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9fafb;
    --white: #ffffff;
    --inbound-border: #3b82f6;
    --outbound-border: #10b981;
}

body { font-family: system-ui, -apple-system, sans-serif; font-size: 14px; color: var(--text); background: var(--bg); }

/* Layout */
.layout { display: flex; min-height: 100vh; }

.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header { padding: 24px 16px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.logo { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.logo-sub { font-size: 11px; color: #94a3b8; margin-top: 2px; }

.nav-section { padding: 12px 8px; flex: 1; }
.nav-link {
    display: block; padding: 8px 12px; border-radius: 6px;
    color: #94a3b8; text-decoration: none; margin-bottom: 2px;
    transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: rgba(255,255,255,0.08); color: #e2e8f0; }
.nav-link.active { background: rgba(59,130,246,0.2); color: #93c5fd; }

.sidebar-footer { padding: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.user-info { display: flex; flex-direction: column; margin-bottom: 8px; }
.user-name { font-size: 13px; font-weight: 600; color: #e2e8f0; }
.user-role { font-size: 11px; color: #64748b; text-transform: capitalize; }
.logout-link { font-size: 12px; color: #64748b; text-decoration: none; }
.logout-link:hover { color: #94a3b8; }

.content { margin-left: var(--sidebar-width); flex: 1; padding: 32px; max-width: 1100px; }

/* Page header */
.page-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.page-header h1 { font-size: 22px; font-weight: 700; }
.page-sub { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.back-link { font-size: 12px; color: var(--text-muted); text-decoration: none; display: block; margin-bottom: 4px; }
.back-link:hover { color: var(--text); }
.project-email-header { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; padding: 8px 16px;
    border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer;
    border: none; text-decoration: none; transition: background 0.15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 4px 10px; font-size: 12px; }
.btn-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.btn-danger:hover { background: #fca5a5; }

/* Login */
.login-body { background: var(--sidebar-bg); display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-container { background: var(--white); border-radius: 12px; padding: 40px; width: 100%; max-width: 380px; }
.login-logo { font-size: 28px; font-weight: 700; color: var(--sidebar-bg); text-align: center; letter-spacing: 2px; }
.login-sub { font-size: 12px; color: var(--text-muted); text-align: center; margin-bottom: 28px; margin-top: 4px; }
.error-banner { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 10px 12px; border-radius: 6px; margin-bottom: 16px; font-size: 13px; }

/* Forms */
.login-form .form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 9px 12px; border: 1px solid var(--border);
    border-radius: 6px; font-size: 14px; color: var(--text);
    background: var(--white); transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; }

/* Dashboard grid */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.project-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 20px; text-decoration: none; color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.project-card:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(59,130,246,0.1); }
.project-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.project-name { font-size: 16px; font-weight: 600; }
.unread-badge { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 99px; }
.project-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.project-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.project-email { font-size: 11px; color: var(--accent); }

/* Project layout — feed + reply + timeline */
.project-layout { display: grid; grid-template-columns: 1fr 300px 28px; gap: 20px; align-items: start; }
@media (max-width: 960px) { .project-layout { grid-template-columns: 1fr; } .timeline-strip { display: none; } }

/* Message feed */
.message-feed { display: flex; flex-direction: column; gap: 6px; }

/* Compact message card */
.msg-card { background: var(--white); border: 1px solid var(--border); border-radius: 7px; overflow: hidden; }
.msg-card.inbound { border-left: 3px solid var(--inbound-border); }
.msg-card.outbound { border-left: 3px solid var(--outbound-border); }
.msg-card.unread { background: #f0f7ff; border-color: #bfdbfe; }
.msg-card.unread .msg-from { font-weight: 700; }
.msg-card.unread .msg-subject-inline { color: var(--text); font-weight: 500; }
.msg-card.dev-private { opacity: 0.45; border-left-color: #ccc !important; }
.msg-card.dev-private .msg-summary-top::after { content: " 🔒"; font-size: 0.75em; color: #999; }
.msg-card summary { list-style: none; cursor: pointer; padding: 8px 12px; user-select: none; }
.msg-card summary::-webkit-details-marker { display: none; }
.msg-card summary:hover { background: var(--bg); }
.msg-card[open] summary { border-bottom: 1px solid var(--border); background: var(--bg); }
.unread-dot { width: 8px; height: 8px; border-radius: 50%; background: #2563eb; flex-shrink: 0; display: inline-block; }

.msg-summary-top { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; overflow: hidden; }
.msg-from { font-size: 13px; font-weight: 600; white-space: nowrap; }
.msg-subject-inline { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0; }
.msg-time-inline { font-size: 11px; color: var(--text-muted); white-space: nowrap; margin-left: auto; flex-shrink: 0; }
.att-hint { font-size: 11px; color: var(--text-muted); flex-shrink: 0; }

.msg-preview { font-size: 12px; color: var(--text-muted); margin-top: 3px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Expanded message */
.msg-expanded { padding: 12px 14px; }
.msg-meta-full { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.msg-body-full { font-size: 13px; line-height: 1.7; white-space: pre-wrap; }
.gmail-link { font-size: 11px; color: #4285f4; text-decoration: none; margin-left: auto; }
.gmail-link:hover { text-decoration: underline; }
.attachments { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.attachment-link { font-size: 12px; background: var(--bg); border: 1px solid var(--border); padding: 4px 10px; border-radius: 4px; text-decoration: none; color: var(--text); }
.attachment-link:hover { border-color: var(--accent); color: var(--accent); }

.direction-badge { font-size: 10px; font-weight: 700; padding: 2px 5px; border-radius: 4px; letter-spacing: 0.5px; flex-shrink: 0; }
.direction-badge.inbound { background: #dbeafe; color: #1d4ed8; }
.direction-badge.outbound { background: #d1fae5; color: #065f46; }
.empty-feed { text-align: center; color: var(--text-muted); padding: 40px 20px; font-size: 13px; background: var(--white); border: 1px dashed var(--border); border-radius: 8px; }

/* Reply panel */
.reply-panel { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 20px; position: sticky; top: 24px; }
.reply-header { font-size: 14px; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.reply-form .form-group { margin-bottom: 12px; }
.optional { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* Timeline strip */
.timeline-strip { position: sticky; top: 24px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.timeline-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); writing-mode: vertical-rl; margin-bottom: 4px; }
.timeline-track { position: relative; width: 2px; background: var(--border); border-radius: 1px; flex: 1; min-height: 300px; }
.tl-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; cursor: pointer; transition: transform 0.1s; }
.tl-dot:hover { transform: translateX(-50%) scale(1.5); }
.tl-dot.tl-in { background: var(--inbound-border); }
.tl-dot.tl-out { background: var(--outbound-border); }

/* Summary panel */
.summary-panel { background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px; padding: 16px; margin-bottom: 20px; }
.summary-header { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #92400e; margin-bottom: 8px; }
.summary-content { font-size: 13px; line-height: 1.7; color: var(--text); white-space: pre-wrap; }

/* Admin */
.admin-grid { display: flex; flex-direction: column; gap: 32px; }
.admin-section { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.admin-section h2 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.admin-section h3 { font-size: 13px; font-weight: 600; margin: 16px 0 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.admin-table th { text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); padding: 6px 8px; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 8px 8px; border-bottom: 1px solid var(--border); font-size: 13px; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-form .form-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-end; }
.admin-form .form-row input, .admin-form .form-row select { flex: 1; min-width: 160px; padding: 8px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; }
.inline-form { display: flex; gap: 6px; align-items: center; }
.inline-form input { padding: 4px 8px; border: 1px solid var(--border); border-radius: 4px; font-size: 12px; }
.role-badge { font-size: 11px; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
.role-badge.admin { background: #fef3c7; color: #92400e; }
.role-badge.developer { background: #dbeafe; color: #1d4ed8; }
.section-note { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state p { margin-bottom: 16px; }
code { background: var(--bg); padding: 2px 6px; border-radius: 3px; font-size: 12px; font-family: monospace; }

/* ─── Alerts ───────────────────────────────────────────────────────────────── */
.alert { padding: 10px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 16px; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }

/* ─── Header actions ─────────────────────────────────────────────────────── */
.header-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sync-status { font-size: 12px; color: var(--text-muted); }
.total-unread-inline { color: var(--accent); font-weight: 600; }

/* ─── History toggle ─────────────────────────────────────────────────────── */
.history-toggle { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 13px; }
.history-label { color: var(--text-muted); }
.toggle-btn { padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); background: var(--white); color: var(--text-muted); text-decoration: none; font-size: 12px; transition: all 0.15s; }
.toggle-btn:hover { border-color: var(--accent); color: var(--accent); }
.toggle-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─── Message status pill ────────────────────────────────────────────────── */
.status-pill { font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.3px; flex-shrink: 0; }
.status-sent { background: #d1fae5; color: #065f46; }
.status-failed { background: #fee2e2; color: #991b1b; }
.status-sending { background: #fef3c7; color: #92400e; }
.status-received { background: #dbeafe; color: #1d4ed8; }

/* ─── Chip / tokenized input ─────────────────────────────────────────────── */
.chip-input-wrap {
    display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
    border: 1px solid var(--border); border-radius: 6px; padding: 6px 8px;
    background: var(--white); cursor: text; min-height: 38px;
    transition: border-color 0.15s;
}
.chip-input-wrap:focus-within { border-color: var(--accent); }
.chip-list { display: contents; }
.email-chip {
    display: inline-flex; align-items: center; gap: 4px;
    background: #dbeafe; color: #1e40af; border-radius: 4px;
    padding: 2px 6px 2px 8px; font-size: 12px; font-weight: 500;
    white-space: nowrap;
}
.chip-remove {
    background: none; border: none; cursor: pointer; padding: 0;
    font-size: 14px; line-height: 1; color: #3b82f6; opacity: 0.7;
}
.chip-remove:hover { opacity: 1; }
.chip-input-wrap input[type="text"] {
    border: none; outline: none; flex: 1; min-width: 160px; font-size: 13px;
    background: transparent; padding: 0; color: var(--text);
}

/* ─── Chip suggestions dropdown ──────────────────────────────────────────── */
.chip-suggestions {
    position: absolute; z-index: 100; background: var(--white);
    border: 1px solid var(--border); border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); max-height: 200px;
    overflow-y: auto; width: 100%;
}
.suggestion-item {
    padding: 8px 12px; cursor: pointer; font-size: 13px;
    transition: background 0.1s;
}
.suggestion-item:hover { background: var(--bg); }
.suggestion-email { color: var(--text-muted); font-size: 12px; }
/* Wrap the chip-input area so suggestion dropdown positions correctly */
.form-group { position: relative; }

/* ─── Contact picker ─────────────────────────────────────────────────────── */
.contact-picker { margin-bottom: 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 10px 12px; }
.contact-picker-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 8px; }
.contact-chips-list { display: flex; flex-wrap: wrap; gap: 6px; }
.contact-chip-btn {
    padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border);
    background: var(--white); color: var(--text); font-size: 12px; cursor: pointer;
    transition: all 0.15s; white-space: nowrap;
}
.contact-chip-btn:hover { border-color: var(--accent); color: var(--accent); background: #eff6ff; }
.contact-chip-btn.added { background: #d1fae5; border-color: #6ee7b7; color: #065f46; }
.contact-email-hint { color: var(--text-muted); font-size: 11px; }

/* ─── Send button states ──────────────────────────────────────────────────── */
.btn-sending { background: #6b7280 !important; cursor: not-allowed; }
.send-state { font-size: 12px; }
.state-sent { color: var(--success); font-weight: 600; }
.state-failed { color: var(--danger); font-weight: 600; }

/* ─── Reply header with state ─────────────────────────────────────────────── */
.reply-header { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* ─── Field errors ────────────────────────────────────────────────────────── */
.field-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

/* ─── Attachment note ────────────────────────────────────────────────────── */
.att-note { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ─── Message Rishi bar ──────────────────────────────────────────────────── */
.message-rishi-bar { display: flex; align-items: center; gap: 10px; background: #faf5ff; border: 1px solid #e9d5ff; border-radius: 6px; padding: 8px 12px; margin-bottom: 12px; }
.message-rishi-label { font-size: 12px; color: #7c3aed; font-weight: 500; white-space: nowrap; }
.btn-rishi { padding: 4px 12px; border-radius: 20px; border: 1px solid #c4b5fd; background: #ede9fe; color: #5b21b6; font-size: 12px; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.btn-rishi:hover { background: #ddd6fe; border-color: #a78bfa; }

/* ─── Flag button ────────────────────────────────────────────────────────── */
.flag-btn { padding: 3px 10px; border-radius: 4px; border: 1px solid var(--border); background: var(--white); color: var(--text-muted); font-size: 11px; cursor: pointer; transition: all 0.15s; margin-left: auto; }
.flag-btn:hover { border-color: #f59e0b; color: #92400e; background: #fef3c7; }
.flag-btn.flagged { background: #fef3c7; border-color: #f59e0b; color: #92400e; font-weight: 600; }
.flag-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── Dashboard badge group ──────────────────────────────────────────────── */
.card-badges { display: flex; align-items: center; gap: 4px; }
.flagged-badge { background: #fef3c7; color: #92400e; font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 99px; border: 1px solid #fde68a; }
.total-flagged-inline { color: #92400e; font-weight: 600; }

/* ─── Talent Bank ────────────────────────────────────────────────────────── */
.talent-tabs { display: flex; gap: 4px; margin-bottom: 16px; }
.tab-btn { padding: 6px 16px; border-radius: 6px; border: 1px solid var(--border); background: var(--white); color: var(--text-muted); font-size: 13px; cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.tab-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.tab-count { background: #ef4444; color: #fff; font-size: 10px; font-weight: 700; border-radius: 99px; padding: 1px 6px; }
.tab-count-approved { background: #10b981; }
.tab-count-rejected { background: #6b7280; }

.filter-bar { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.filter-bar select { padding: 5px 10px; border: 1px solid var(--border); border-radius: 5px; font-size: 13px; background: var(--white); }

.talent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }

.cs-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.cs-card.cs-pending { border-left: 3px solid #f59e0b; }
.cs-card.cs-rejected { border-left: 3px solid #ef4444; opacity: 0.7; }

.cs-card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.cs-tag { font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.03em; }
.cs-tag-sector { background: #dbeafe; color: #1e40af; }
.cs-tag-type { background: #f3e8ff; color: #6b21a8; }
.cs-tag-outcome { background: #d1fae5; color: #065f46; }
.cs-tag-size { background: #f1f5f9; color: #475569; }

.cs-title { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; }
.cs-summary { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.cs-files { display: flex; flex-direction: column; gap: 4px; }
.cs-file-link { font-size: 12px; color: var(--accent); text-decoration: none; }
.cs-file-link:hover { text-decoration: underline; }

.cs-footer { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-muted); margin-top: auto; }
.cs-developer { font-weight: 600; color: var(--text); }
.cs-status-badge { padding: 2px 8px; border-radius: 99px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-left: auto; }
.cs-status-approved { background: #d1fae5; color: #065f46; }
.cs-status-pending { background: #fef3c7; color: #92400e; }
.cs-status-rejected { background: #fee2e2; color: #991b1b; }

.cs-admin-note { font-size: 12px; color: #92400e; background: #fef3c7; border-radius: 4px; padding: 6px 10px; }
.cs-review-form { border-top: 1px solid var(--border); padding-top: 10px; }
.review-note-input { flex: 1; padding: 5px 8px; border: 1px solid var(--border); border-radius: 4px; font-size: 12px; min-width: 0; }
.btn-approve { background: #10b981; color: #fff; border-color: #10b981; }
.btn-approve:hover { background: #059669; }
.cs-delete-form { margin-top: 4px; }
.btn-link-danger { background: none; border: none; color: #ef4444; font-size: 11px; cursor: pointer; padding: 0; text-decoration: underline; }

.pack-checkbox { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }
.pack-builder-bar { position: sticky; top: 0; z-index: 10; background: #1e40af; color: #fff; padding: 8px 16px; border-radius: 6px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; }

/* Submit form */
.cs-submit-guidelines { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 6px; padding: 12px 16px; margin-bottom: 24px; font-size: 13px; }
.cs-submit-guidelines ul { margin: 6px 0 0 16px; line-height: 1.8; color: var(--text-muted); }
.cs-submit-form { max-width: 680px; display: flex; flex-direction: column; gap: 18px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.input-full { width: 100%; padding: 8px 10px; border: 1px solid var(--border); border-radius: 5px; font-size: 14px; }
.hint { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.pdf-upload-row { display: flex; flex-direction: column; gap: 10px; }
.pdf-upload-item { display: flex; align-items: center; gap: 10px; }
.pdf-label { font-size: 12px; color: var(--text-muted); width: 80px; flex-shrink: 0; }
.form-actions { display: flex; gap: 10px; padding-top: 4px; }
.cs-submit-guidelines strong { color: var(--text); }
