:root {
    --crm-sidebar-width: 260px;
    --crm-brand: #232059;
    --crm-brand-light: #2e2a6e;
    --crm-accent: #6bbc44;
    --crm-accent-hover: #5da83a;
    --crm-surface: #ffffff;
    --crm-bg: #f0f2f5;
    --crm-border: #e8eaed;
    --crm-text: #1a1d29;
    --crm-text-muted: #6b7280;
    --crm-sidebar-text: rgba(255, 255, 255, 0.72);
    --crm-sidebar-text-active: #ffffff;
}

body {
    background: var(--crm-bg);
    color: var(--crm-text);
}

/* ── CRM shell layout ── */
.crm-app {
    overflow-x: hidden;
}

.crm-shell {
    display: flex;
    min-height: 100vh;
}

.crm-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin-left: var(--crm-sidebar-width);
}

.crm-content {
    flex: 1;
    padding: 1.5rem 1.75rem 2rem;
}

/* ── Sidebar ── */
.crm-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--crm-sidebar-width);
    height: 100vh;
    background: var(--crm-brand);
    display: flex;
    flex-direction: column;
    z-index: 1040;
    transition: transform 0.25s ease;
}

.crm-sidebar__brand {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.crm-sidebar__nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0.75rem 1rem;
}

.crm-sidebar__section {
    margin-bottom: 1.25rem;
}

.crm-sidebar__label {
    display: block;
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.crm-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.15rem;
    border-radius: 0.5rem;
    color: var(--crm-sidebar-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}

.crm-sidebar__link i {
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
    opacity: 0.85;
}

.crm-sidebar__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--crm-sidebar-text-active);
}

.crm-sidebar__link.active {
    background: var(--crm-accent);
    color: #fff;
}

.crm-sidebar__link.active i {
    opacity: 1;
}

.crm-sidebar__link--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.crm-sidebar__footer {
    padding: 1rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.crm-sidebar__user {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

.crm-sidebar__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--crm-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.crm-sidebar__user-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.crm-sidebar__user-name {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.crm-sidebar__user-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
}

.crm-sidebar__logout {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: none;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.crm-sidebar__logout:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.crm-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1035;
}

/* ── Top bar ── */
.crm-topbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.75rem;
    background: var(--crm-surface);
    border-bottom: 1px solid var(--crm-border);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.crm-topbar__toggle {
    display: none;
    color: var(--crm-text);
    font-size: 1.4rem;
    padding: 0.25rem;
    line-height: 1;
    text-decoration: none;
}

.crm-topbar__title {
    flex: 1;
    min-width: 0;
}

.crm-topbar__heading {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--crm-text);
}

.crm-topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* ── Page toolbar (actions below topbar) ── */
.page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-toolbar__subtitle {
    color: var(--crm-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ── Stat cards ── */
.stat-card {
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-card .card-body {
    padding: 1.15rem 1.25rem;
}

.stat-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.stat-card__icon--blue { background: #e8f0fe; color: #1a56db; }
.stat-card__icon--amber { background: #fef3c7; color: #d97706; }
.stat-card__icon--purple { background: #ede9fe; color: #7c3aed; }
.stat-card__icon--green { background: #d1fae5; color: #059669; }

.stat-card__label {
    font-size: 0.8rem;
    color: var(--crm-text-muted);
    margin-bottom: 0.25rem;
}

.stat-card__value {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ── Content cards ── */
.card {
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.card-header {
    background: var(--crm-surface);
    border-bottom: 1px solid var(--crm-border);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem 0.75rem 0 0 !important;
}

/* ── Logo ── */
.elixir-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.elixir-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.elixir-logo--nav {
    height: 36px;
}

.elixir-logo--sidebar {
    height: 32px;
    filter: brightness(0) invert(1);
}

.elixir-logo--auth {
    height: 52px;
}

.elixir-logo--md {
    height: 40px;
}

.table > :not(caption) > * > * {
    vertical-align: middle;
}

/* ── Auth pages ── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
}

.auth-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 1rem;
}

.auth-wrapper-wide {
    max-width: 460px;
}

.auth-tabs .nav-link {
    color: #495057;
    font-weight: 500;
}

.auth-tabs .nav-link.active {
    background: #0d6efd;
}

.auth-card {
    border: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ── Quick links grid ── */
.quick-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    background: var(--crm-surface);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--crm-text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s, transform 0.15s;
}

.quick-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    color: var(--crm-text);
}

.quick-link__icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--crm-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--crm-brand);
}

.quick-link__text strong {
    display: block;
    font-size: 0.9rem;
}

.quick-link__text span {
    font-size: 0.78rem;
    color: var(--crm-text-muted);
}

/* ── Dashboard ── */
.dash-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, var(--crm-brand) 0%, var(--crm-brand-light) 100%);
    border-radius: 0.85rem;
    color: #fff;
}

.dash-welcome__title {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.dash-welcome__subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
}

.btn-accent {
    background: var(--crm-accent);
    border-color: var(--crm-accent);
    color: #fff;
}

.btn-accent:hover {
    background: var(--crm-accent-hover);
    border-color: var(--crm-accent-hover);
    color: #fff;
}

.stat-card--highlight {
    border-left: 3px solid var(--crm-accent);
}

.stat-card__badge {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    background: var(--crm-bg);
    color: var(--crm-text-muted);
}

.stat-card__badge--danger {
    background: #fde8e8;
    color: #dc3545;
}

.stat-card__meta {
    font-size: 0.78rem;
    color: var(--crm-text-muted);
    margin-top: 0.35rem;
}

.dash-chart-card .card-body {
    padding: 1rem 1.25rem 1.25rem;
}

.dash-pipeline-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dash-pipeline-item:last-child {
    margin-bottom: 0 !important;
}

.dash-progress {
    height: 6px;
    background: var(--crm-bg);
    border-radius: 3px;
    overflow: hidden;
}

.dash-progress__bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.dash-list-item {
    padding: 0.85rem 1.25rem;
    border-left: none;
    border-right: none;
}

.dash-list-item:first-child {
    border-top: none;
}

.dash-bar-row {
    display: grid;
    grid-template-columns: 72px 1fr 88px;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.dash-bar-row__label {
    font-size: 0.78rem;
    color: var(--crm-text-muted);
}

.dash-bar-row__track {
    height: 8px;
    background: var(--crm-bg);
    border-radius: 4px;
    overflow: hidden;
}

.dash-bar-row__fill {
    height: 100%;
    background: var(--crm-accent);
    border-radius: 4px;
    min-width: 2px;
}

.dash-bar-row__value {
    font-size: 0.78rem;
    font-weight: 600;
    text-align: right;
}

/* ── Invoice builder ── */
.invoice-builder-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--crm-brand) 0%, var(--crm-brand-light) 100%);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(35, 32, 89, 0.18);
}

.invoice-builder-hero__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.invoice-builder-hero__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.invoice-builder-hero__sub {
    font-size: 0.85rem;
    opacity: 0.82;
}

.invoice-section {
    border: 1px solid var(--crm-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.invoice-section__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--crm-surface);
    border-bottom: 1px solid var(--crm-border);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--crm-text);
    padding: 0.75rem 1.1rem;
}

.invoice-section__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--crm-brand);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.invoice-brand-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (max-width: 767.98px) {
    .invoice-brand-picker {
        grid-template-columns: 1fr;
    }
}

.invoice-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 0.75rem;
    border: 2px solid var(--crm-border);
    border-radius: 10px;
    background: var(--crm-bg);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    text-align: center;
    margin: 0;
}

.invoice-brand-card:hover {
    border-color: rgba(107, 188, 68, 0.5);
    background: #fff;
}

.invoice-brand-card.is-active {
    border-color: var(--crm-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107, 188, 68, 0.15);
}

.invoice-brand-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.invoice-brand-card__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    overflow: hidden;
}

.invoice-brand-card__logo {
    max-height: 28px;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.invoice-brand-card__initial {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--crm-brand);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-brand-card__name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--crm-text-muted);
    line-height: 1.2;
}

.invoice-brand-card.is-active .invoice-brand-card__name {
    color: var(--crm-brand);
}

.invoice-form .form-control,
.invoice-form .form-select {
    border-radius: 8px;
    border-color: var(--crm-border);
    font-size: 0.9rem;
}

.invoice-form .form-control:focus,
.invoice-form .form-select:focus {
    border-color: var(--crm-accent);
    box-shadow: 0 0 0 3px rgba(107, 188, 68, 0.12);
}

.invoice-items-table thead th {
    background: var(--crm-brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    padding: 0.65rem 0.75rem;
}

.invoice-items-table tbody td {
    vertical-align: middle;
    padding: 0.5rem 0.75rem;
    border-color: var(--crm-border);
}

.invoice-items-table input.form-control-sm {
    font-size: 0.85rem;
    border-radius: 6px;
}

.invoice-totals-card {
    background: linear-gradient(160deg, var(--crm-brand) 0%, #1a1845 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(35, 32, 89, 0.25);
}

.invoice-totals-card__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.invoice-totals-card__total {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.invoice-totals-card__fields .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.invoice-totals-card__fields .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: none;
}

.invoice-totals-card__fields .form-label {
    color: rgba(255, 255, 255, 0.75);
}

.invoice-totals-card__balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.invoice-totals-card__balance strong {
    font-size: 1.25rem;
    color: #ffd166;
}

.invoice-form-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--crm-surface);
    border: 1px solid var(--crm-border);
    border-radius: 12px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
}

/* ── Invoice show / print ── */
.invoice-doc {
    border: 1px solid var(--crm-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.invoice-doc__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(to right, #fafbfc, #fff);
    border-bottom: 3px solid var(--crm-accent);
}

.invoice-doc__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.invoice-doc__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 40px;
    padding: 4px 8px;
    background: #fff;
    border: 1px solid var(--crm-border);
    border-radius: 8px;
    flex-shrink: 0;
}

.invoice-doc__logo {
    max-height: 30px;
    max-width: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.invoice-doc__brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--crm-brand);
    margin: 0;
}

.invoice-doc__meta {
    text-align: right;
}

.invoice-doc__number {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--crm-brand);
    margin-bottom: 0.25rem;
}

.invoice-doc__dates {
    font-size: 0.8rem;
    color: var(--crm-text-muted);
}

.invoice-doc__body {
    padding: 1.5rem 1.75rem;
}

.invoice-doc__addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
    .invoice-doc__addresses {
        grid-template-columns: 1fr;
    }

    .invoice-doc__top {
        flex-direction: column;
    }

    .invoice-doc__meta {
        text-align: left;
    }
}

.invoice-doc__addr-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--crm-accent);
    margin-bottom: 0.5rem;
}

.invoice-doc-table thead th {
    background: var(--crm-brand);
    color: #fff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    padding: 0.6rem 0.85rem;
}

.invoice-doc-table tfoot th {
    font-size: 0.85rem;
    padding: 0.55rem 0.85rem;
}

.invoice-doc-table tfoot tr:last-child th {
    background: rgba(255, 209, 102, 0.15);
    color: #b45309;
    font-size: 0.95rem;
}

.invoice-doc-sidebar .card {
    border-radius: 10px;
    border-color: var(--crm-border);
}

.invoice-brand-preview__img {
    max-height: 30px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.invoice-brand-preview__img--show {
    max-height: 30px;
    max-width: 120px;
}

.invoice-print-header {
    border-top: 3px solid var(--crm-brand);
}

/* ── Invoice listing ── */
.invoice-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--crm-text-muted);
    background: var(--crm-bg);
    border: 1px solid var(--crm-border);
    transition: all 0.15s ease;
}

.invoice-status-pill:hover {
    color: var(--crm-brand);
    border-color: rgba(35, 32, 89, 0.25);
    background: #fff;
}

.invoice-status-pill.is-active {
    background: var(--crm-brand);
    border-color: var(--crm-brand);
    color: #fff;
}

.invoice-status-pill__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    font-size: 0.68rem;
    background: rgba(0, 0, 0, 0.08);
}

.invoice-status-pill.is-active .invoice-status-pill__count {
    background: rgba(255, 255, 255, 0.2);
}

.invoice-list-table thead th {
    background: var(--crm-brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    padding: 0.75rem;
    white-space: nowrap;
}

.invoice-list-table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    border-color: var(--crm-border);
}

.invoice-list-table tbody tr:hover {
    background: rgba(107, 188, 68, 0.04);
}

.invoice-list-table__number {
    font-weight: 700;
    color: var(--crm-brand);
    text-decoration: none;
}

.invoice-list-table__number:hover {
    color: var(--crm-accent);
}

.invoice-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--crm-accent);
    margin-top: 0.25rem;
}

.invoice-live-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--crm-accent);
    animation: invoice-live-pulse 1.5s infinite;
}

@keyframes invoice-live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

@keyframes invoice-row-flash {
    0% { background: rgba(107, 188, 68, 0.25); }
    100% { background: transparent; }
}

/* ── Mobile responsive ── */
@media (max-width: 991.98px) {
    .crm-main {
        margin-left: 0;
    }

    .crm-sidebar {
        transform: translateX(-100%);
    }

    .crm-sidebar-open .crm-sidebar {
        transform: translateX(0);
    }

    .crm-sidebar-open .crm-sidebar-backdrop {
        display: block;
    }

    .crm-topbar__toggle {
        display: inline-flex;
    }

    .crm-content {
        padding: 1.25rem 1rem 1.5rem;
    }

    .crm-topbar {
        padding: 0.75rem 1rem;
    }
}
