/* ==========================================================
   RPMotive CRM — Dark Mode, Mobile First
   ========================================================== */

:root {
    --bg: #0b0f14;
    --bg-elevated: #121821;
    --bg-higher: #1a222e;
    --bg-hover: #212d3c;
    --border: #253245;
    --border-strong: #344258;
    --text: #e8ecf2;
    --text-muted: #8a96a8;
    --text-dim: #667284;

    --accent: #3ea7ff;       /* primary blue */
    --accent-hover: #5ab3ff;
    --accent-deep: #1e6cc4;

    --success: #3ecf6f;
    --warn: #ffb84d;
    --danger: #ff5e5e;
    --purple: #b68cff;
    --pink: #ff7eb6;

    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;

    --shadow-md: 0 6px 20px rgba(0,0,0,.45);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.55);

    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

button { font-family: inherit; font-size: inherit; cursor: pointer; }
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    background: var(--bg-elevated);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .5rem .7rem;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(62,167,255,.15);
}

/* ==========================================================
   UTILITIES
   ========================================================== */

.hidden { display: none !important; }
.muted { color: var(--text-muted); }
.small { font-size: .85rem; }
.center { text-align: center; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
code {
    font-family: var(--font-mono);
    background: var(--bg-higher);
    padding: .1rem .35rem;
    border-radius: 3px;
    font-size: .85em;
}
.code-block {
    background: var(--bg-higher);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .8rem;
    font-family: var(--font-mono);
    font-size: .85rem;
    white-space: pre-wrap;
    overflow-x: auto;
}

/* ==========================================================
   LOGIN & INSTALL
   ========================================================== */

.login-page, .install-page {
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at top, rgba(62,167,255,.12), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(182,140,255,.08), transparent 60%),
        var(--bg);
}

.login-box, .install-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.install-box { max-width: 640px; }

.login-brand {
    text-align: center;
    margin-bottom: 2rem;
}
.login-brand h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.8rem 0 0.2rem;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.login-brand p { margin: 0; }

.login-form input[type="password"] {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: .4em;
    padding: 1rem;
    margin-bottom: 1rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: white;
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .02em;
    box-shadow: 0 3px 12px rgba(62,167,255,.35);
}
.brand-mark.xl { width: 4rem; height: 4rem; font-size: 1.2rem; border-radius: 14px; }

.brand {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
}
.brand h1 { margin: 0; font-size: 1.3rem; }

/* ==========================================================
   BUTTONS
   ========================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .55rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
    font-weight: 500;
    transition: all .15s;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { background: var(--bg-hover); border-color: var(--border-strong); }
.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: white; }
.btn-ghost { background: transparent; }
.btn-danger { background: transparent; color: var(--danger); border-color: var(--danger); }
.btn-danger:hover { background: var(--danger); color: white; }
.btn-block { width: 100%; }
.btn-sm { padding: .3rem .7rem; font-size: .85rem; }

/* ==========================================================
   ALERTS
   ========================================================== */

.alert {
    border-radius: var(--radius-sm);
    padding: .7rem 1rem;
    margin: .6rem 0;
    border: 1px solid;
    font-size: .95rem;
}
.alert-error { color: var(--danger); border-color: var(--danger); background: rgba(255,94,94,.08); }
.alert-ok    { color: var(--success); border-color: var(--success); background: rgba(62,207,111,.08); }
.alert-info  { color: var(--accent); border-color: var(--accent); background: rgba(62,167,255,.08); }

/* ==========================================================
   APP LAYOUT
   ========================================================== */

.app-body { padding-top: 56px; } /* Space für fixed topbar */

.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 56px;
    background: rgba(11, 15, 20, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    z-index: 100;
}

.topbar-brand {
    display: flex; align-items: center; gap: .6rem;
}
.topbar-title {
    font-weight: 700;
    font-size: 1.02rem;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.quicksearch {
    flex: 1;
    max-width: 520px;
    position: relative;
}
.quicksearch input {
    width: 100%;
    padding: .45rem .9rem;
    border-radius: 20px;
    background: var(--bg-higher);
    border: 1px solid var(--border);
}
.quicksearch-results {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: .4rem;
    box-shadow: var(--shadow-lg);
    max-height: 60vh;
    overflow-y: auto;
    z-index: 200;
}
.quicksearch-result {
    padding: .7rem 1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.quicksearch-result:last-child { border-bottom: none; }
.quicksearch-result:hover { background: var(--bg-hover); }
.quicksearch-result .firma { font-weight: 600; }
.quicksearch-result .meta { color: var(--text-muted); font-size: .85rem; }

.topbar-nav {
    display: flex;
    align-items: center;
    gap: .3rem;
}
.tabbtn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: .5rem .9rem;
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-weight: 500;
    transition: color .15s, background .15s;
    text-decoration: none;
}
.tabbtn:hover { color: var(--text); background: var(--bg-hover); }
.tabbtn.active { color: var(--accent); background: rgba(62,167,255,.1); }
.tabbtn.logout { margin-left: .3rem; color: var(--text-dim); }

.burger {
    display: none;
    background: transparent;
    color: var(--text);
    border: none;
    font-size: 1.4rem;
}

@media (max-width: 860px) {
    .topbar-nav { display: none; flex-direction: column; align-items: stretch; position: fixed; top: 56px; left: 0; right: 0; background: var(--bg-elevated); border-bottom: 1px solid var(--border); padding: .5rem; gap: 0; }
    .topbar-nav.open { display: flex; }
    .topbar-nav .tabbtn { justify-content: flex-start; padding: .9rem 1rem; }
    .burger { display: block; }
    .topbar-title { display: none; }
    .quicksearch { max-width: none; }
}

.app-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem;
}

@media (max-width: 600px) {
    .app-main { padding: 1rem .7rem 4rem; }
}

/* ==========================================================
   VIEWS
   ========================================================== */

.view-title {
    font-size: 1.5rem;
    margin: 0 0 1.2rem;
    font-weight: 600;
}
.view-subtitle {
    font-size: 1.1rem;
    margin: 2rem 0 .7rem;
    color: var(--text-muted);
}
.view-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.view-actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ==========================================================
   STAT CARDS
   ========================================================== */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(62,167,255,.18), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}
.stat-card.pink::before  { background: radial-gradient(circle, rgba(255,126,182,.25), transparent 70%); }
.stat-card.green::before { background: radial-gradient(circle, rgba(62,207,111,.25), transparent 70%); }
.stat-card.purple::before{ background: radial-gradient(circle, rgba(182,140,255,.25), transparent 70%); }
.stat-card.warn::before  { background: radial-gradient(circle, rgba(255,184,77,.25), transparent 70%); }

.stat-label {
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: .3rem;
}
.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}
.stat-sub {
    color: var(--text-dim);
    font-size: .75rem;
    margin-top: .3rem;
}

.dash-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.dash-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
}
.dash-card h3 {
    margin: 0 0 .8rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.list-compact {
    display: flex;
    flex-direction: column;
}
.list-compact-item {
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .8rem;
    cursor: pointer;
}
.list-compact-item:last-child { border-bottom: none; }
.list-compact-item:hover { background: var(--bg-hover); }
.list-compact-item .main { flex: 1; min-width: 0; }
.list-compact-item .title { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-compact-item .meta { color: var(--text-muted); font-size: .82rem; }

/* ==========================================================
   LEADS TABLE
   ========================================================== */

.table-wrap {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
}
.leads-table thead th {
    background: var(--bg-higher);
    text-align: left;
    padding: .7rem 1rem;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    position: sticky;
    top: 56px;
    z-index: 2;
}
.leads-table tbody td {
    padding: .7rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.leads-table tbody tr { cursor: pointer; transition: background .1s; }
.leads-table tbody tr:hover { background: var(--bg-hover); }
.leads-table tbody tr:last-child td { border-bottom: none; }

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

/* Responsive: auf Mobile Card-Layout */
@media (max-width: 760px) {
    .leads-table thead { display: none; }
    .leads-table tbody tr {
        display: block;
        padding: .8rem 1rem;
        border-bottom: 1px solid var(--border);
    }
    .leads-table tbody td {
        display: block;
        padding: .15rem 0;
        border-bottom: none;
    }
    .leads-table tbody td::before {
        content: attr(data-label) ": ";
        color: var(--text-muted);
        font-size: .8rem;
        margin-right: .4rem;
    }
    .leads-table tbody td.cell-firma::before { content: none; }
    .leads-table tbody td.cell-firma { font-weight: 600; margin-bottom: .3rem; }
}

/* ==========================================================
   BADGES (Status, Priorität, Börse)
   ========================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .6rem;
    border-radius: 12px;
    font-size: .75rem;
    font-weight: 500;
    border: 1px solid currentColor;
    background: rgba(255,255,255,.02);
}

.badge.status-neu           { color: var(--accent); }
.badge.status-kontaktiert   { color: var(--purple); }
.badge.status-interessiert  { color: var(--pink); }
.badge.status-angebot       { color: var(--warn); }
.badge.status-verhandlung   { color: var(--warn); }
.badge.status-gewonnen      { color: var(--success); background: rgba(62,207,111,.12); }
.badge.status-verloren      { color: var(--text-dim); }
.badge.status-nicht_erreicht { color: var(--text-muted); }

.badge.prio-1 { color: var(--warn); }
.badge.prio-2 { color: var(--danger); background: rgba(255,94,94,.1); }

.badge.boerse-yes { color: var(--success); }
.badge.boerse-no  { color: var(--danger); }
.badge.boerse-unk { color: var(--text-muted); }

/* ==========================================================
   PIPELINE / KANBAN
   ========================================================== */

.kanban {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    overflow-x: auto;
}
.kanban-col {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .8rem;
    min-height: 300px;
}
.kanban-col h3 {
    margin: 0 0 .6rem;
    font-size: .9rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}
.kanban-col h3 .count {
    background: var(--bg-higher);
    border-radius: 12px;
    padding: .05rem .5rem;
    font-size: .75rem;
}
.kanban-card {
    background: var(--bg-higher);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .7rem;
    margin-bottom: .6rem;
    cursor: pointer;
    transition: all .15s;
}
.kanban-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.kanban-card .firma { font-weight: 600; margin-bottom: .2rem; }
.kanban-card .meta  { color: var(--text-muted); font-size: .78rem; }
.kanban-card .deal  { color: var(--success); font-size: .85rem; font-weight: 500; margin-top: .3rem; }

/* ==========================================================
   REMINDERS
   ========================================================== */

.reminders-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.reminder-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .8rem 1rem;
}
.reminder-item.overdue { border-left: 4px solid var(--danger); }
.reminder-item.soon    { border-left: 4px solid var(--warn); }
.reminder-item.done    { opacity: .5; }
.reminder-item .title  { font-weight: 500; }
.reminder-item .when   { color: var(--text-muted); font-size: .85rem; }
.reminder-item .main   { flex: 1; min-width: 0; }
.reminder-item .lead-link { color: var(--accent); font-size: .85rem; }

.switch { display: inline-flex; align-items: center; gap: .4rem; color: var(--text-muted); font-size: .9rem; }
.switch input { accent-color: var(--accent); }

/* ==========================================================
   MODALS
   ========================================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(4px);
}
.modal-box {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 720px;
    width: 100%;
    padding: 2rem;
    margin: auto;
}
.modal-box.lead-detail { max-width: 900px; }
.modal-close {
    position: absolute;
    top: .8rem; right: .8rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--bg-hover); color: var(--text); }

/* Forms inside modal */
.lead-form, .email-form, .reminder-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 1rem;
}
@media (max-width: 560px) {
    .lead-form, .email-form, .reminder-form { grid-template-columns: 1fr; }
}
.lead-form label,
.email-form label,
.reminder-form label,
.settings-form label {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: .85rem;
    color: var(--text-muted);
}
.lead-form label.fullwidth,
.email-form label.fullwidth,
.reminder-form label.fullwidth,
.settings-form label.fullwidth {
    grid-column: 1 / -1;
}
.form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.settings-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 1rem;
    max-width: 720px;
}
@media (max-width: 560px) {
    .settings-form { grid-template-columns: 1fr; }
}

/* ==========================================================
   LEAD DETAIL
   ========================================================== */

.lead-detail-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.lead-detail-head h2 {
    margin: 0;
    font-size: 1.4rem;
    flex: 1;
    min-width: 200px;
}
.lead-detail-head .meta { color: var(--text-muted); font-size: .92rem; }

.lead-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.lead-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: .8rem;
    background: var(--bg-higher);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}
.lead-info-grid > div { font-size: .9rem; }
.lead-info-grid .label { color: var(--text-muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }

.pitch-box {
    background: linear-gradient(135deg, rgba(62,167,255,.08), rgba(182,140,255,.08));
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    white-space: pre-wrap;
    font-size: .92rem;
}

.qr-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-bottom: 1rem;
}
@media (max-width: 500px) {
    .qr-panel { grid-template-columns: 1fr; }
}
.qr-tile {
    background: var(--bg-higher);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .9rem;
    text-align: center;
}
.qr-tile h4 {
    margin: 0 0 .5rem;
    font-size: .82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.qr-tile canvas, .qr-tile img, .qr-tile svg {
    max-width: 180px;
    width: 100%;
    height: auto;
    background: white;
    padding: 6px;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}
.qr-tile .qr-caption { margin-top: .4rem; font-size: .78rem; color: var(--text-muted); }

.timeline {
    display: flex;
    flex-direction: column;
}
.timeline-item {
    display: flex;
    gap: .7rem;
    padding: .6rem 0;
    border-bottom: 1px dashed var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: .5rem;
    flex-shrink: 0;
}
.timeline-item.typ-anruf    .dot { background: var(--success); }
.timeline-item.typ-email    .dot { background: var(--accent); }
.timeline-item.typ-whatsapp .dot { background: var(--success); }
.timeline-item.typ-notiz    .dot { background: var(--warn); }
.timeline-item.typ-statuswechsel .dot { background: var(--purple); }
.timeline-item.typ-system   .dot { background: var(--text-dim); }
.timeline-item .content { flex: 1; }
.timeline-item .when { color: var(--text-dim); font-size: .78rem; }
.timeline-item .body { margin-top: .25rem; white-space: pre-wrap; font-size: .92rem; }

.note-input {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
}
.note-input textarea {
    flex: 1;
    min-height: 50px;
    resize: vertical;
}

/* ==========================================================
   TOAST
   ========================================================== */

.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-higher);
    border: 1px solid var(--border-strong);
    padding: .8rem 1.3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 400;
    animation: toast-in .3s ease;
}
.toast.ok { border-color: var(--success); }
.toast.err { border-color: var(--danger); color: var(--danger); }
@keyframes toast-in {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

/* ==========================================================
   SCROLLBAR
   ========================================================== */

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 5px;
    border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ==========================================================
   PRINT (Visitenkarte)
   ========================================================== */
@media print {
    .topbar, .view-actions, .modal-close, .lead-actions { display: none !important; }
    body { background: white; color: black; }
}
