/* HFA Lead Capture — Global Styles */
:root {
  --primary: #1a1a2e;
  --primary-light: #22224a;
  --accent: #c9a84c;
  --accent-hover: #d4b85e;
  --text: #e0e0e0;
  --text-muted: #a0a0c0;
  --bg: #0f0f23;
  --card-bg: #1e1e3a;
  --border: #2a2a4a;
  --success: #2ecc71;
  --danger: #e74c3c;
  --radius: 8px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary { background: var(--primary-light); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }

.btn-danger { background: var(--danger); color: #fff; }

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

/* Forms */
input, select, textarea {
  background: var(--primary);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Tables */
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--primary-light); color: var(--accent); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
td { font-size: 14px; }
tr:hover td { background: rgba(201,168,76,0.04); }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* Mobile-first responsive */
@media (max-width: 768px) {
  .container { padding: 12px; }
  .btn { padding: 8px 14px; font-size: 13px; }
  th, td { padding: 8px 6px; font-size: 12px; }
}

/* ===================================================================
   REGISTRATION FORM STYLES
   =================================================================== */

[x-cloak] {
    display: none !important;
}

/* Registration container — narrower, centered, light background */
.reg-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 20px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f5f7;
    color: #1a1a2e;
}

/* Override dark theme for registration pages */
body.reg-page {
    background: #f5f5f7;
    color: #1a1a2e;
}

/* ===== Typography ===== */
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.reg-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.subtitle {
    font-size: 15px;
    color: #666;
    text-align: center;
    margin-bottom: 24px;
}

/* ===== Step Dots ===== */
.step-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d1d6;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--accent);
}

/* ===== Registration Form Fields ===== */
.form-fields {
    width: 100%;
}

.field {
    margin-bottom: 16px;
    width: 100%;
}

.field-row {
    display: flex;
    gap: 12px;
}

.field-row .field {
    flex: 1;
}

.reg-container label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 4px;
}

.reg-container input[type="text"],
.reg-container input[type="email"],
.reg-container input[type="tel"],
.reg-container input[type="number"],
.reg-container select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    font-size: 16px; /* prevents iOS zoom */
    border: 1.5px solid #d1d1d6;
    border-radius: 10px;
    background: #fff;
    color: #1a1a2e;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.reg-container input:focus,
.reg-container select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.phone-row {
    display: flex;
    gap: 8px;
}

.phone-row .country-select {
    width: 80px !important;
    min-width: 80px;
    max-width: 80px;
    flex: 0 0 80px;
    text-align: center;
}

.phone-row input[type="tel"] {
    flex: 1;
    min-width: 0;
}

/* ===== Registration Buttons ===== */
.reg-container .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
}

.reg-container .btn:active {
    transform: scale(0.98);
}

.reg-container .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reg-container .btn-primary {
    background: var(--primary);
    color: #fff;
}

.reg-container .btn-primary:hover:not(:disabled) {
    background: #2d2d4a;
}

.reg-container .btn-secondary {
    background: var(--accent);
    color: var(--primary);
}

.reg-container .btn-secondary:hover:not(:disabled) {
    background: #b89a3f;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid #d1d1d6;
}

.btn-outline:hover:not(:disabled) {
    background: #f0f0f2;
}

.btn-link {
    background: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    min-height: 40px;
    border: none;
    cursor: pointer;
}

.btn-link:hover:not(:disabled) {
    color: var(--primary);
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* ===== Divider ===== */
.divider {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    color: #999;
    font-size: 13px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d1d1d6;
}

.divider span {
    padding: 0 12px;
}

/* ===== QR Scanner ===== */
.scanner-container {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

/* ===== Verification Code ===== */
.code-input-wrap {
    width: 100%;
    margin-bottom: 20px;
}

.code-input {
    width: 100%;
    height: 64px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3em;
    border: 2px solid #d1d1d6;
    border-radius: 12px;
    background: #fff;
    color: var(--primary);
    outline: none;
}

.code-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* ===== Camera / Photo ===== */
.camera-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.camera-preview {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.btn-capture {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    min-height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent);
    border: 3px solid var(--accent);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.photo-preview-wrap {
    width: 100%;
    max-width: 300px;
    margin-bottom: 16px;
}

.photo-preview {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* ===== Success ===== */
.success-section {
    justify-content: center;
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #34c759;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.barcode-display {
    background: #fff;
    border: 1.5px solid #d1d1d6;
    border-radius: 12px;
    padding: 16px 24px;
    margin: 16px 0 24px;
    text-align: center;
    width: 100%;
}

.barcode-label {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
}

.barcode-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: "SF Mono", "Fira Code", monospace;
    color: var(--primary);
    letter-spacing: 0.05em;
}

/* ===== Error Message ===== */
.error-msg {
    color: #ff3b30;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
}

/* ===== Spinner ===== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Toast Notifications (for staff page) ===== */
.toast-container {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 360px;
}

.toast {
    background: var(--primary);
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.toast-success {
    border-left: 4px solid #34c759;
}

.toast.toast-error {
    border-left: 4px solid #ff3b30;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Registration section transitions ===== */
.reg-container section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== Registration Responsive ===== */
@media (max-width: 360px) {
    .reg-container {
        padding: 16px 12px 32px;
    }

    .reg-container h2 {
        font-size: 18px;
    }

    .code-input {
        font-size: 26px;
        height: 56px;
    }
}

@media (min-width: 768px) {
    .reg-container {
        padding-top: 48px;
    }
}

/* ===================================================================
   STAFF DASHBOARD STYLES
   =================================================================== */

.staff-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* ----- Sidebar ----- */
.staff-sidebar {
    width: 300px;
    min-width: 300px;
    background: var(--primary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.staff-sidebar-header {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.staff-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.staff-logo span {
    color: var(--accent);
}

.staff-search {
    width: 100%;
    padding: 8px 12px;
    font-size: 13px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
}

.staff-search:focus {
    border-color: var(--accent);
    outline: none;
}

.staff-lead-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.staff-lead-card {
    padding: 10px 12px;
    border-radius: var(--radius);
    border-left: 3px solid var(--border);
    margin-bottom: 4px;
    cursor: pointer;
    transition: background 0.15s;
}

.staff-lead-card:hover {
    background: var(--primary-light);
}

.staff-lead-card--active {
    background: var(--primary-light);
    border-left-color: var(--accent);
}

.staff-lead-card--hot {
    border-left-color: #e67e22;
}

.staff-lead-card--hot.staff-lead-card--active {
    border-left-color: #e67e22;
}

.staff-lead-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.staff-lead-card-company {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.staff-lead-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    font-size: 11px;
}

.staff-source-badge {
    background: var(--primary-light);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.staff-barcode-badge {
    background: #e8eaf6;
    color: #37474f;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    font-family: monospace;
}

.staff-time-ago {
    color: var(--text-muted);
    font-size: 11px;
}

.staff-empty-list {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

/* ----- Main Area ----- */
.staff-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg);
}

/* ----- Tab Bar ----- */
.staff-tabs {
    display: flex;
    overflow-x: auto;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    padding: 0 8px;
    min-height: 40px;
    align-items: flex-end;
}

.staff-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.staff-tab:hover {
    color: var(--text);
}

.staff-tab--active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.staff-tab-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
}

.staff-tab-close:hover {
    color: var(--danger);
}

/* ----- Detail Panel ----- */
.staff-detail {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    max-width: 900px;
}

.staff-contact-header {
    margin-bottom: 20px;
}

.staff-contact-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.staff-contact-company {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.staff-contact-links {
    margin-bottom: 8px;
    font-size: 14px;
}

.staff-contact-links a {
    color: var(--accent);
}

.staff-contact-links a:hover {
    text-decoration: underline;
}

.staff-link-sep {
    color: var(--text-muted);
    margin: 0 6px;
}

.staff-contact-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.staff-verified-badge {
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
}

/* ----- Photos ----- */
.staff-photos {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.staff-photo-box {
    position: relative;
    width: 180px;
}

.staff-photo-box img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

.staff-photo-label {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ----- Tags ----- */
.staff-tags-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.staff-tag-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--card-bg);
    color: var(--text-muted);
    transition: all 0.15s;
}

.staff-tag-btn:hover {
    background: var(--primary-light);
}

/* Tag colors when active */
.staff-tag-btn--red.staff-tag-btn--on {
    background: rgba(231, 76, 60, 0.2);
    border-color: #e74c3c;
    color: #e74c3c;
}

.staff-tag-btn--blue.staff-tag-btn--on {
    background: rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    color: #3498db;
}

.staff-tag-btn--yellow.staff-tag-btn--on {
    background: rgba(241, 196, 15, 0.2);
    border-color: #f1c40f;
    color: #f1c40f;
}

.staff-tag-btn--green.staff-tag-btn--on {
    background: rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
    color: #2ecc71;
}

/* ----- Staff Name ----- */
.staff-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.staff-name-row label {
    color: var(--text-muted);
    white-space: nowrap;
}

.staff-name-input {
    max-width: 200px;
    padding: 6px 10px;
    font-size: 13px;
}

/* ----- Quick Note ----- */
.staff-quicknote-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.staff-quicknote-input {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
}

.staff-quicknote-btn {
    padding: 8px 16px !important;
    min-height: auto !important;
    width: auto !important;
    font-size: 13px !important;
}

/* ----- Detailed Note ----- */
.staff-detailed-note {
    margin-bottom: 16px;
}

.staff-detailed-note textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    resize: vertical;
    min-height: 60px;
}

/* ----- Notes History ----- */
.staff-notes-history {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.staff-notes-history h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.staff-note-item {
    padding: 10px 12px;
    background: var(--card-bg);
    border-radius: var(--radius);
    margin-bottom: 8px;
}

.staff-note-content {
    font-size: 14px;
    color: var(--text);
    white-space: pre-wrap;
    margin-bottom: 4px;
}

.staff-note-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.staff-quick-badge {
    background: var(--accent);
    color: var(--primary);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.staff-note-delete {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    margin-left: auto;
    padding: 0 4px;
    line-height: 1;
}

.staff-note-delete:hover {
    color: var(--danger);
}

/* ----- Empty State ----- */
.staff-empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.staff-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.staff-empty-state h2 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 4px;
}

.staff-empty-state p {
    font-size: 14px;
}

/* ----- Toasts ----- */
.staff-toast-container {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 380px;
}

.staff-toast {
    background: var(--primary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 14px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: staffSlideIn 0.3s ease-out;
}

.staff-toast--urgent {
    border-left-color: var(--danger);
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.3);
    animation: staffSlideIn 0.3s ease-out, staffPulse 2s ease-in-out infinite;
}

.staff-toast-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.staff-toast-urgent-header {
    font-size: 15px;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 8px;
}

.staff-toast-thumb {
    margin-bottom: 8px;
}

.staff-toast-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.staff-toast-badge-num {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-family: monospace;
}

.staff-toast-actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 4px 12px !important;
    font-size: 12px !important;
    min-height: auto !important;
    width: auto !important;
}

@keyframes staffSlideIn {
    from { opacity: 0; transform: translateX(100%); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes staffPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(231, 76, 60, 0.3); }
    50%      { box-shadow: 0 0 20px rgba(231, 76, 60, 0.6); }
}

/* ----- Responsive: Stack on small screens ----- */
@media (max-width: 768px) {
    .staff-container {
        flex-direction: column;
    }

    .staff-sidebar {
        width: 100%;
        min-width: 100%;
        max-height: 40vh;
    }

    .staff-detail {
        padding: 16px;
    }

    .staff-photos {
        flex-direction: column;
    }

    .staff-photo-box {
        width: 100%;
        max-width: 200px;
    }
}

/* ===================================================================
   CAPTURE LEAD MODAL
   =================================================================== */

.staff-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.staff-modal {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.staff-modal h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    text-align: center;
}

.capture-photo {
    display: block;
    max-width: 200px;
    margin: 0 auto 16px;
    border-radius: var(--radius);
}

.capture-badge-info {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-family: monospace;
    margin-bottom: 16px;
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.capture-form-row {
    display: flex;
    gap: 10px;
}

.capture-form-row input {
    flex: 1;
}

.capture-form input {
    padding: 10px 14px;
    font-size: 14px;
    background: var(--primary);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.capture-form input:focus {
    border-color: var(--accent);
    outline: none;
}

.capture-error {
    color: var(--danger);
    font-size: 13px;
    text-align: center;
    margin-bottom: 12px;
}

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

.capture-actions .btn {
    flex: 1;
}
