/* Nimbus CRM — application chrome and page components */

/* ============================ shell ============================ */
.app-root { min-height: 100%; display: flex; flex-direction: column; }
.app-shell { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }

.global-header {
  position: sticky; top: 0; z-index: 500; height: var(--header-h);
  background: var(--brand-darker); display: flex; align-items: center;
  gap: .5rem; padding: 0 .75rem; color: #fff;
  padding-top: env(safe-area-inset-top);
  height: calc(var(--header-h) + env(safe-area-inset-top));
}
.gh-logo { display: flex; align-items: center; gap: .5rem; color: #fff; }
.gh-logo svg { width: 2.1rem; fill: #fff; }
.gh-logo b { font-size: 14px; letter-spacing: .01em; }
.gh-launcher {
  display: flex; align-items: center; justify-content: center; width: 2rem;
  height: 2rem; border-radius: var(--radius); border: 0; background: transparent;
  color: #fff;
}
.gh-launcher:hover, .gh-icon-btn:hover { background: rgba(255,255,255,.16); }
.gh-search { flex: 1; max-width: 46rem; position: relative; }
.gh-search input {
  width: 100%; height: 2rem; border-radius: var(--radius); border: 0;
  padding: 0 .6rem 0 2rem; background: rgba(255,255,255,.9); color: #181818;
}
.gh-search input::placeholder { color: #5c5c5c; }
.gh-search .icon { position: absolute; left: .55rem; top: .5rem; color: #5c5c5c; }
.gh-actions { display: flex; align-items: center; gap: .15rem; margin-left: auto; }
.gh-icon-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border: 0; background: transparent; color: #fff;
  border-radius: var(--radius);
}
.gh-badge {
  position: absolute; top: .1rem; right: .1rem; min-width: 1rem; height: 1rem;
  padding: 0 .2rem; border-radius: 999px; background: var(--error); color: #fff;
  font-size: 10px; font-weight: 700; display: flex; align-items: center;
  justify-content: center;
}

/* ---------------- app nav bar ---------------- */
.app-nav {
  position: sticky; top: calc(var(--header-h) + env(safe-area-inset-top));
  z-index: 400; background: var(--surface); border-bottom: 1px solid var(--border-weak);
  display: flex; align-items: stretch; gap: .25rem; padding: 0 .75rem;
  box-shadow: var(--shadow-1); min-height: var(--nav-h);
}
.app-nav-name {
  display: flex; align-items: center; font-size: 17px; font-weight: 700;
  padding-right: .75rem; white-space: nowrap;
}
.app-nav-tabs { display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.app-nav-tabs::-webkit-scrollbar { display: none; }
.nav-tab {
  display: flex; align-items: center; gap: .25rem; padding: 0 .75rem;
  border: 0; background: transparent; color: var(--text); white-space: nowrap;
  border-bottom: 3px solid transparent; font-size: 13px;
}
.nav-tab:hover { background: var(--surface-alt); text-decoration: none; }
.nav-tab.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 600; }
.nav-tab .caret { opacity: .55; }

.page { flex: 1; padding: .75rem; max-width: 100%; }
.page-wide { padding: 0; }

/* ---------------- app launcher ---------------- */
.launcher-panel {
  position: fixed; inset: 0; z-index: 900; background: rgba(0,0,0,.4);
  display: flex; align-items: flex-start; justify-content: center; padding: 3rem 1rem;
}
.launcher-card {
  background: var(--surface); border-radius: var(--radius-lg); width: min(60rem, 100%);
  max-height: 80vh; overflow: auto; box-shadow: var(--shadow-3); padding: 1.25rem;
}
.launcher-search { margin-bottom: 1rem; }
.launcher-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: .5rem; }
.launcher-item {
  display: flex; gap: .6rem; padding: .6rem; border-radius: var(--radius);
  align-items: flex-start; text-align: left; border: 0; background: transparent; width: 100%;
}
.launcher-item:hover { background: var(--brand-lighter); text-decoration: none; }
.launcher-item h4 { font-size: 13px; color: var(--link); }
.launcher-item p { margin: .1rem 0 0; color: var(--text-weak); font-size: 12px; }
.launcher-section-title {
  font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--text-weak); margin: 1rem 0 .35rem; font-weight: 700;
}

/* ---------------- dropdown / menu ---------------- */
.menu {
  position: absolute; z-index: 800; min-width: 12rem; background: var(--surface);
  border: 1px solid var(--border-weak); border-radius: var(--radius);
  box-shadow: var(--shadow-3); padding: .25rem 0; max-height: 24rem; overflow: auto;
}
.menu-item {
  display: flex; align-items: center; gap: .5rem; width: 100%; padding: .4rem .75rem;
  border: 0; background: transparent; text-align: left; color: var(--text);
}
.menu-item:hover { background: var(--brand-lighter); text-decoration: none; }
.menu-item.checked::before { content: "✓"; color: var(--brand); }
.menu-sep { height: 1px; background: var(--border-weak); margin: .25rem 0; }
.menu-title { padding: .35rem .75rem; font-size: 11px; text-transform: uppercase;
  color: var(--text-weak); font-weight: 700; letter-spacing: .04em; }

/* ---------------- cards ---------------- */
.card {
  background: var(--surface); border: 1px solid var(--border-weak);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-1); margin-bottom: .75rem;
}
.card-header {
  display: flex; align-items: center; gap: .5rem; padding: .6rem .85rem;
  border-bottom: 1px solid var(--border-weak);
}
.card-header h2, .card-header h3 { font-size: 14px; font-weight: 600; }
.card-header .sub { color: var(--text-weak); font-size: 12px; font-weight: 400; }
.card-header .spacer { flex: 1; }
.card-body { padding: .85rem; }
.card-footer {
  padding: .5rem .85rem; border-top: 1px solid var(--border-weak); text-align: center;
}
.card-footer a { font-size: 13px; }

/* ---------------- data table ---------------- */
.table-wrap { overflow: auto; -webkit-overflow-scrolling: touch; }
table.data { font-size: 13px; }
table.data th {
  text-align: left; font-weight: 600; color: var(--text-weak); font-size: 12px;
  padding: .4rem .6rem; border-bottom: 1px solid var(--border-weak);
  background: var(--surface); position: sticky; top: 0; z-index: 2; white-space: nowrap;
}
table.data th button {
  display: inline-flex; align-items: center; gap: .25rem; border: 0;
  background: transparent; color: inherit; font: inherit; padding: 0;
}
table.data td {
  padding: .4rem .6rem; border-bottom: 1px solid var(--border-weak);
  vertical-align: middle; max-width: 22rem;
}
table.data tbody tr:hover { background: var(--brand-lighter); }
table.data tbody tr.selected { background: #e5f1fd; }
table.data td.num, table.data th.num { text-align: right; }
table.data .row-check { width: 2rem; }
.cell-edit {
  visibility: hidden; border: 0; background: transparent; color: var(--text-weak);
  padding: 0 .15rem; border-radius: 3px;
}
td:hover .cell-edit,
.dfield:hover .cell-edit,
.cell-edit:focus-visible { visibility: visible; }
.cell-edit:hover { background: #e5e5e5; color: var(--text); }
/* touch devices have no hover — keep the pencil reachable */
@media (hover: none) { .dfield .cell-edit { visibility: visible; } }
.inline-editor { display: flex; gap: .25rem; align-items: center; }

/* ---------------- list view header ---------------- */
.lv-header { display: flex; align-items: flex-start; gap: .5rem; padding: .5rem .25rem .35rem; }
.lv-title { display: flex; align-items: center; gap: .5rem; }
.lv-title h1 { font-size: 18px; font-weight: 600; display: flex; align-items: center; gap: .25rem; }
.lv-title .eyebrow { font-size: 12px; color: var(--text-weak); }
.lv-actions { margin-left: auto; display: flex; gap: .25rem; align-items: center; flex-wrap: wrap; }
.lv-toolbar {
  display: flex; align-items: center; gap: .5rem; padding: .35rem .25rem;
  border-bottom: 1px solid var(--border-weak); font-size: 12px; color: var(--text-weak);
}
.lv-toolbar .spacer { flex: 1; }
.lv-search { position: relative; }
.lv-search input { height: 1.9rem; padding-left: 1.9rem; width: 14rem; }
.lv-search .icon { position: absolute; left: .5rem; top: .45rem; color: var(--text-weak); }

/* ---------------- kanban ---------------- */
.kanban { display: flex; gap: .5rem; overflow-x: auto; padding: .5rem .25rem 1rem; align-items: flex-start; }
.kanban-col {
  background: #f2f2f3; border-radius: var(--radius); min-width: 15rem; flex: 1 0 15rem;
  display: flex; flex-direction: column; max-height: 70vh;
}
.kanban-col.drop-target { outline: 2px dashed var(--brand); }
.kanban-col-head { padding: .5rem .6rem; border-bottom: 1px solid var(--border-weak); }
.kanban-col-head .t { font-size: 11px; text-transform: uppercase; color: var(--text-weak); font-weight: 700; }
.kanban-col-head .v { font-size: 13px; font-weight: 600; }
.kanban-col-body { padding: .4rem; overflow-y: auto; display: flex; flex-direction: column; gap: .4rem; }
.kanban-card {
  background: var(--surface); border: 1px solid var(--border-weak); border-radius: var(--radius);
  padding: .5rem; box-shadow: var(--shadow-1); cursor: grab;
}
.kanban-card:active { cursor: grabbing; }
.kanban-card .k-title { font-weight: 600; color: var(--link); display: block; margin-bottom: .2rem; }
.kanban-card .k-meta { color: var(--text-weak); font-size: 12px; }

/* ---------------- record page ---------------- */
.record-header {
  background: var(--surface); border: 1px solid var(--border-weak);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-1); margin-bottom: .75rem;
}
.rh-top { display: flex; gap: .75rem; padding: .75rem .85rem .5rem; align-items: flex-start; }
.rh-titles { min-width: 0; flex: 1; }
.rh-eyebrow { font-size: 12px; color: var(--text-weak); }
.rh-name { font-size: 19px; font-weight: 700; word-break: break-word; }
.rh-actions { display: flex; gap: .25rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.rh-fields {
  display: flex; gap: 2rem; padding: .35rem .85rem .7rem; flex-wrap: wrap;
  border-top: 1px solid var(--border-weak); margin-top: .35rem;
}
.rh-field { min-width: 7rem; }
.rh-field .l { font-size: 11px; color: var(--text-weak); display: block; }
.rh-field .v { font-size: 13px; font-weight: 600; }

/* path */
.path { display: flex; padding: .5rem .85rem; gap: 2px; overflow-x: auto; }
.path-item {
  position: relative; flex: 1 0 auto; min-width: 7rem; background: #ecebea;
  color: var(--text); padding: .35rem .5rem .35rem 1.4rem; font-size: 12px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%);
  border: 0; text-align: left; white-space: nowrap;
}
.path-item:first-child { clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%); padding-left: .6rem; }
.path-item.complete { background: var(--brand-darker); color: #fff; }
.path-item.current { background: var(--brand); color: #fff; font-weight: 600; }
.path-item.won { background: var(--success); color: #fff; }
.path-item.lost { background: #ba0517; color: #fff; }
.path-coach {
  display: flex; gap: 1rem; padding: .5rem .85rem .85rem; border-top: 1px solid var(--border-weak);
  flex-wrap: wrap;
}
.path-coach .col { flex: 1 1 16rem; min-width: 0; }
.path-coach h4 { font-size: 12px; text-transform: uppercase; color: var(--text-weak); margin-bottom: .35rem; }
.path-coach ul { list-style: disc; padding-left: 1.1rem; color: var(--text-weak); }
.path-coach li { margin-bottom: .2rem; }

/* tabs */
.tabs { display: flex; border-bottom: 1px solid var(--border-weak); gap: .25rem; overflow-x: auto; }
.tab {
  padding: .5rem .85rem; border: 0; background: transparent; color: var(--text);
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.tab.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 600; }
.tab:hover { background: var(--surface-alt); }

.record-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: .75rem; }
@media (max-width: 1024px) { .record-grid { grid-template-columns: 1fr; } }

/* detail sections */
.detail-section + .detail-section { border-top: 1px solid var(--border-weak); }
.section-head {
  display: flex; align-items: center; gap: .35rem; padding: .5rem .85rem;
  border: 0; background: transparent; width: 100%; text-align: left;
  font-weight: 600; font-size: 13px; color: var(--text);
}
.section-head .caret { transition: transform .15s; }
.section-head.collapsed .caret { transform: rotate(-90deg); }
.section-body { padding: 0 .85rem .85rem; display: grid; gap: .1rem 2rem; }
.section-body.cols-2 { grid-template-columns: 1fr 1fr; }
.section-body.cols-1 { grid-template-columns: 1fr; }
@media (max-width: 640px) { .section-body.cols-2 { grid-template-columns: 1fr; } }
.dfield { padding: .35rem 0; border-bottom: 1px solid transparent; min-width: 0; }
.dfield:hover { border-bottom-color: var(--border-weak); }
.dfield .l { font-size: 12px; color: var(--text-weak); display: flex; align-items: center; gap: .25rem; }
.dfield .v { display: flex; align-items: center; gap: .35rem; word-break: break-word; min-height: 1.4rem; }
.dfield .v .value { flex: 1; min-width: 0; }
.dfield.span-2 { grid-column: 1 / -1; }

/* related lists */
.related-item + .related-item { margin-top: .75rem; }
.rl-rows { display: flex; flex-direction: column; }
.rl-row {
  display: flex; gap: .5rem; padding: .5rem .85rem; border-top: 1px solid var(--border-weak);
  align-items: center;
}
.rl-row .rl-main { flex: 1; min-width: 0; }
.rl-row .rl-title { font-weight: 600; color: var(--link); }
.rl-row .rl-meta { color: var(--text-weak); font-size: 12px; }

/* activity timeline */
.timeline { padding: .25rem .85rem .85rem; }
.tl-group-title {
  font-size: 12px; font-weight: 700; color: var(--text-weak); margin: .75rem 0 .35rem;
  text-transform: uppercase; letter-spacing: .03em;
}
.tl-item { display: flex; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid var(--border-weak); }
.tl-item .tl-icon { width: 1.75rem; height: 1.75rem; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: #fff; flex: none; }
.tl-body { flex: 1; min-width: 0; }
.tl-title { font-weight: 600; }
.tl-meta { color: var(--text-weak); font-size: 12px; }
.tl-desc { color: var(--text-weak); margin-top: .2rem; white-space: pre-wrap; }

/* chatter */
.chatter-composer { padding: .75rem .85rem; border-bottom: 1px solid var(--border-weak); }
.chatter-composer textarea { min-height: 3.5rem; }
.feed-item { padding: .75rem .85rem; border-bottom: 1px solid var(--border-weak); display: flex; gap: .6rem; }
.feed-item .feed-body { flex: 1; min-width: 0; }
.feed-author { font-weight: 600; }
.feed-time { color: var(--text-weak); font-size: 12px; }
.feed-text { margin: .25rem 0; white-space: pre-wrap; word-break: break-word; }
.feed-actions { display: flex; gap: .75rem; font-size: 12px; }
.feed-actions button { border: 0; background: transparent; color: var(--link); padding: 0; }
.feed-comment { display: flex; gap: .5rem; padding: .4rem 0 0; }
.feed-comment .c-body { background: var(--surface-alt); border-radius: var(--radius); padding: .35rem .5rem; flex: 1; }

/* ---------------- modal ---------------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 950;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-3);
  width: min(46rem, 100%); max-height: 90vh; display: flex; flex-direction: column;
}
.modal.sm { width: min(30rem, 100%); }
.modal.lg { width: min(64rem, 100%); }
.modal-head {
  display: flex; align-items: center; gap: .5rem; padding: .85rem 1rem;
  border-bottom: 1px solid var(--border-weak);
}
.modal-head h2 { font-size: 17px; }
.modal-head .close { margin-left: auto; }
.modal-body { padding: 1rem; overflow: auto; flex: 1; }
.modal-foot {
  padding: .75rem 1rem; border-top: 1px solid var(--border-weak);
  display: flex; justify-content: flex-end; gap: .5rem; background: var(--surface-alt);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .span-2 { grid-column: 1 / -1; }
.form-section-title {
  grid-column: 1/-1; font-weight: 700; font-size: 12px; text-transform: uppercase;
  color: var(--text-weak); border-bottom: 1px solid var(--border-weak);
  padding-bottom: .25rem; margin: .75rem 0 .5rem;
}

/* ---------------- toast ---------------- */
.toast-root {
  position: fixed; top: calc(var(--header-h) + env(safe-area-inset-top) + .5rem);
  left: 50%; transform: translateX(-50%); z-index: 1000;
  display: flex; flex-direction: column; gap: .5rem; pointer-events: none;
  width: min(34rem, calc(100% - 2rem));
}
.toast {
  display: flex; align-items: center; gap: .5rem; padding: .6rem .85rem;
  border-radius: var(--radius); color: #fff; background: var(--offline);
  box-shadow: var(--shadow-3); pointer-events: auto;
}
.toast.success { background: #2e844a; }
.toast.error { background: #ba0517; }
.toast.warning { background: #a86403; }
.toast.info { background: #0176d3; }
.toast .close { margin-left: auto; color: #fff; }

/* ---------------- lookup ---------------- */
.lookup { position: relative; }
.lookup-results {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 700; background: var(--surface);
  border: 1px solid var(--border-weak); border-radius: var(--radius);
  box-shadow: var(--shadow-3); max-height: 16rem; overflow: auto;
}
.lookup-opt { display: flex; gap: .5rem; padding: .4rem .6rem; align-items: center; width: 100%;
  border: 0; background: transparent; text-align: left; }
.lookup-opt:hover, .lookup-opt.active { background: var(--brand-lighter); }
.lookup-opt .name { font-weight: 600; }
.lookup-opt .sub { color: var(--text-weak); font-size: 12px; }
.lookup-pill {
  display: inline-flex; align-items: center; gap: .35rem; border: 1px solid var(--border);
  border-radius: var(--radius); padding: .2rem .4rem; background: var(--surface-alt);
  max-width: 100%;
}

/* ---------------- search results ---------------- */
.search-group + .search-group { margin-top: 1rem; }

/* ---------------- home ---------------- */
.home-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .75rem; }
@media (max-width: 1024px) { .home-grid { grid-template-columns: 1fr; } }
.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem,1fr)); gap: .75rem; }
.kpi {
  background: var(--surface); border: 1px solid var(--border-weak); border-radius: var(--radius-lg);
  padding: .85rem; box-shadow: var(--shadow-1);
}
.kpi .k-label { font-size: 12px; color: var(--text-weak); }
.kpi .k-value { font-size: 22px; font-weight: 700; }
.progress { height: .5rem; background: #ecebea; border-radius: 999px; overflow: hidden; margin-top: .5rem; }
.progress > span { display: block; height: 100%; background: var(--success); border-radius: 999px; }

/* ---------------- charts ---------------- */
.chart { width: 100%; }
.chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-legend { display: flex; flex-wrap: wrap; gap: .5rem .85rem; margin-top: .5rem; font-size: 12px; }
.chart-legend .li { display: flex; align-items: center; gap: .3rem; }
.chart-legend .sw { width: .7rem; height: .7rem; border-radius: 2px; }

/* ---------------- reports ---------------- */
.report-builder { display: grid; grid-template-columns: 17rem minmax(0,1fr); gap: .75rem; }
@media (max-width: 900px) { .report-builder { grid-template-columns: 1fr; } }
.rb-panel { background: var(--surface); border: 1px solid var(--border-weak);
  border-radius: var(--radius-lg); padding: .75rem; max-height: 78vh; overflow: auto; }
.rb-field-item { display: flex; align-items: center; gap: .4rem; padding: .2rem .3rem; border-radius: 3px; }
.rb-field-item:hover { background: var(--brand-lighter); }
.report-group-row td { background: #f3f6f9; font-weight: 600; }

/* ---------------- setup ---------------- */
.setup-grid { display: grid; grid-template-columns: 14rem minmax(0,1fr); gap: .75rem; }
@media (max-width: 800px) { .setup-grid { grid-template-columns: 1fr; } }
.setup-nav { background: var(--surface); border: 1px solid var(--border-weak);
  border-radius: var(--radius-lg); padding: .5rem; }
.setup-nav a { display: block; padding: .4rem .5rem; border-radius: var(--radius); color: var(--text); }
.setup-nav a.active, .setup-nav a:hover { background: var(--brand-lighter); color: var(--brand-darker); text-decoration: none; }

/* ---------------- login ---------------- */
.login-page {
  min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg,#0b5cab 0%, #032d60 60%, #021a3a 100%); padding: 1rem;
}
.login-card {
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-3);
  width: min(24rem, 100%); padding: 1.5rem;
}
.login-logo { text-align: center; margin-bottom: 1rem; }
.login-logo svg { width: 4.5rem; fill: var(--brand); }
.login-logo b { display: block; font-size: 20px; margin-top: .35rem; }
.login-hint { font-size: 12px; color: var(--text-weak); text-align: center; margin-top: 1rem; }
.login-lang { display: flex; justify-content: center; margin-top: 1rem; }

/* ---------------- calendar ---------------- */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border-weak); }
.cal-cell { background: var(--surface); min-height: 6rem; padding: .3rem; }
.cal-cell.other { background: var(--surface-alt); color: var(--text-weak); }
.cal-cell.today .cal-day { background: var(--brand); color: #fff; border-radius: 50%; }
.cal-day { display: inline-flex; width: 1.4rem; height: 1.4rem; align-items: center; justify-content: center; font-size: 12px; }
.cal-event { display: block; font-size: 11px; background: var(--brand-light); color: var(--brand-darker);
  border-radius: 3px; padding: .1rem .25rem; margin-top: .15rem; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; }
.cal-head { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; background: var(--border-weak); }
.cal-head div { background: var(--surface); text-align: center; padding: .3rem; font-size: 12px;
  font-weight: 600; color: var(--text-weak); }

/* ---------------- misc layout helpers ---------------- */
.row { display: flex; align-items: center; gap: .5rem; }
.row.wrap { flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: .5rem; }
.spacer { flex: 1; }
.muted { color: var(--text-weak); }
.strong { font-weight: 600; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; }
.mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; }
.fab { display: none; }
