:root {
  --r2ps-primary: #1d4ed8;
  --r2ps-accent: #f59e0b;
  --r2ps-success: #10b981;
  --r2ps-bg: #f3f6fb;
  --r2ps-surface: #ffffff;
  --r2ps-surface-2: #f8fafc;
  --r2ps-border: #dbe4f3;
  --r2ps-text: #0f172a;
  --r2ps-muted: #64748b;
  --r2ps-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.r2ps-body {
  background: radial-gradient(1200px 500px at 10% -10%, rgba(37, 99, 235, 0.08), transparent 60%),
              radial-gradient(1000px 500px at 95% -5%, rgba(245, 158, 11, 0.08), transparent 60%),
              var(--r2ps-bg);
  color: var(--r2ps-text);
  min-height: 100vh;
}

.layout-shell { display: flex; min-height: 100vh; }
.layout-content { flex: 1; min-width: 0; }

.sidebar {
  width: 250px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border-right: 1px solid var(--r2ps-border);
  padding: 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-brand {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.brand-dot {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--r2ps-primary), #3b82f6);
  color: #fff;
  font-weight: 700;
}

.sidebar-brand small {
  display: block;
  color: var(--r2ps-muted);
  font-size: .74rem;
}

.sidebar-link {
  display: flex;
  gap: .6rem;
  align-items: center;
  color: #1e293b;
  text-decoration: none;
  border: 1px solid transparent;
  padding: .55rem .65rem;
  border-radius: .6rem;
  margin-bottom: .35rem;
}

.sidebar-link:hover {
  border-color: #c7d7f4;
  background: rgba(37, 99, 235, 0.08);
  color: #0f172a;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .95rem 1.1rem;
  border-bottom: 1px solid var(--r2ps-border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.card,
.kpi-card {
  background: linear-gradient(180deg, var(--r2ps-surface), var(--r2ps-surface-2));
  border: 1px solid var(--r2ps-border);
  color: var(--r2ps-text);
  border-radius: 14px;
  box-shadow: var(--r2ps-shadow);
}

.table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--r2ps-text);
  --bs-table-border-color: var(--r2ps-border);
}

.table > :not(caption) > * > * { color: var(--r2ps-text); }

.finance-table > tbody > tr.finance-row-income > * {
  background: rgba(16, 185, 129, 0.08) !important;
}

.finance-table > tbody > tr.finance-row-expense > * {
  background: rgba(239, 68, 68, 0.08) !important;
}

.finance-table > tbody > tr.finance-row-project-receipt > * {
  background: rgba(37, 99, 235, 0.10) !important;
}

.finance-table > tbody > tr.finance-row-fuel > * {
  background: rgba(245, 158, 11, 0.10) !important;
}

.finance-table > tbody > tr.finance-row-provider-payment > * {
  background: rgba(168, 85, 247, 0.10) !important;
}

.finance-mobile-list {
  display: grid;
  gap: .7rem;
}

.finance-mobile-card {
  border-width: 1px;
  margin-bottom: .75rem;
}

.finance-mobile-card.finance-row-income {
  background: rgba(16, 185, 129, 0.08);
}

.finance-mobile-card.finance-row-expense {
  background: rgba(239, 68, 68, 0.08);
}

.finance-mobile-card.finance-row-project-receipt {
  background: rgba(37, 99, 235, 0.10);
}

.finance-mobile-card.finance-row-fuel {
  background: rgba(245, 158, 11, 0.10);
}

.finance-mobile-card.finance-row-provider-payment {
  background: rgba(168, 85, 247, 0.10);
}

.note-mobile-card {
  border-width: 1px;
  margin-bottom: .75rem;
}

.note-card-pending {
  background: rgba(245, 158, 11, 0.10) !important;
  border-color: rgba(245, 158, 11, 0.30) !important;
}

.note-card-overdue {
  background: rgba(239, 68, 68, 0.10) !important;
  border-color: rgba(239, 68, 68, 0.30) !important;
}

.note-card-paid {
  background: rgba(16, 185, 129, 0.08) !important;
  border-color: rgba(16, 185, 129, 0.28) !important;
}

.note-card-neutral {
  background: rgba(100, 116, 139, 0.06) !important;
  border-color: rgba(100, 116, 139, 0.24) !important;
}

.form-control,
.form-select {
  background: #ffffff;
  border-color: #cfd9ec;
  color: var(--r2ps-text);
}

.form-control::placeholder { color: #94a3b8; }

.form-control:focus,
.form-select:focus {
  background: #fff;
  color: var(--r2ps-text);
  border-color: var(--r2ps-primary);
  box-shadow: 0 0 0 .2rem rgba(37, 99, 235, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, var(--r2ps-accent), #f59e0b);
  border-color: #e59a03;
  color: #111827;
  font-weight: 700;
}

.btn-primary:hover { transform: translateY(-1px); }
.btn-success { font-weight: 700; }

.kpi-card { padding: 1rem; }
.kpi-card small { color: var(--r2ps-muted); display: block; }
.kpi-card h3 { margin: .35rem 0 0; font-size: 1.2rem; }
.kpi-card small i {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: .2rem;
}
.kpi-income {
  border-color: rgba(16, 185, 129, .35);
  background: linear-gradient(180deg, #ffffff, #f1fdf7);
}
.kpi-income h3 { color: #047857; }
.kpi-expense {
  border-color: rgba(239, 68, 68, .35);
  background: linear-gradient(180deg, #ffffff, #fff4f4);
}
.kpi-expense h3 { color: #b91c1c; }
.kpi-balance {
  border-color: rgba(37, 99, 235, .35);
  background: linear-gradient(180deg, #ffffff, #eef4ff);
}
.kpi-balance h3 { color: #1d4ed8; }
.kpi-receivable {
  border-color: rgba(245, 158, 11, .35);
  background: linear-gradient(180deg, #ffffff, #fffaed);
}
.kpi-receivable h3 { color: #b45309; }

.agenda-dashboard-card {
  background: linear-gradient(145deg, #ffffff, #f7fbff);
  border-color: #cfe0fb;
}
.agenda-dashboard-card h5 i {
  width: 18px;
  height: 18px;
  color: #1d4ed8;
}
.agenda-dashboard-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}
.agenda-dashboard-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .6rem;
  align-items: center;
  border: 1px solid #dbe7f9;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 12px;
  padding: .55rem .65rem;
}
.agenda-dashboard-item-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.agenda-dashboard-item-link:hover .agenda-dashboard-item {
  border-color: #a9c5f6;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .12);
}
.agenda-date-chip {
  min-width: 92px;
  text-align: center;
  font-size: .74rem;
  font-weight: 700;
  color: #1d4ed8;
  background: rgba(37, 99, 235, .10);
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 999px;
  padding: .22rem .5rem;
}
.agenda-main { min-width: 0; }
.agenda-title {
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.agenda-sub {
  color: #64748b;
  font-size: .84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.agenda-empty {
  display: flex;
  align-items: center;
  gap: .55rem;
  border: 1px dashed #c7d7f4;
  border-radius: 12px;
  padding: .85rem;
  color: #64748b;
}
.agenda-empty i {
  width: 18px;
  height: 18px;
  color: #94a3b8;
}

.voice-preview-empty {
  border: 1px dashed #cfd9ec;
  background: #f8fbff;
  border-radius: 12px;
  padding: .8rem;
  color: #64748b;
}

.voice-json-preview {
  margin: .35rem 0 0;
  font-size: .78rem;
  background: #0f172a;
  color: #dbeafe;
  border-radius: 10px;
  padding: .6rem;
  max-height: 200px;
  overflow: auto;
}

.voice-history-list {
  display: grid;
  gap: .6rem;
}

.personal-accounts-list {
  display: grid;
  gap: .75rem;
}

.personal-acc-card {
  border-width: 1px;
}

.personal-acc-card.status-overdue {
  background: rgba(239, 68, 68, 0.10);
  border-color: rgba(239, 68, 68, 0.28);
}

.personal-acc-card.status-pending {
  background: rgba(245, 158, 11, 0.10);
  border-color: rgba(245, 158, 11, 0.28);
}

.personal-acc-card.status-scheduled {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.24);
}

.personal-acc-card.status-paid,
.personal-acc-card.status-received {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.24);
}

.goal-card {
  border: 1px solid #dbe4f3;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.goal-card.goal-done {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, #f0fdf7 0%, #ffffff 100%);
}

.goal-progress-wrap {
  height: 10px;
  background: #e8eef8;
  border-radius: 999px;
}

.goal-progress {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 60%, #22c55e 100%);
  border-radius: 999px;
}

.goal-empty {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem;
  border: 1px dashed #c9d8f2;
  border-radius: 12px;
  color: #64748b;
}

.goal-empty i {
  width: 18px;
  height: 18px;
  color: #1d4ed8;
}

.voice-history-item {
  border: 1px solid var(--r2ps-border);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 12px;
  padding: .65rem .75rem;
}

@media (min-width: 768px) {
  .agenda-dashboard-list {
    grid-template-columns: 1fr 1fr;
  }
}

.fuel-mini-card h6 i {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}
.fuel-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
  margin-bottom: .55rem;
}

.diary-timeline .diary-item {
  border-left: 4px solid rgba(37, 99, 235, .45);
}

.diary-upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
  gap: .45rem;
}

.diary-upload-preview-item {
  border: 1px solid #dbe4f3;
  border-radius: .55rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .35rem .45rem;
}

.diary-upload-preview-media {
  width: 54px;
  height: 54px;
  border-radius: .45rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.diary-upload-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 54px;
  max-height: 54px;
  border-radius: .35rem;
}

.diary-upload-preview img {
  width: 54px !important;
  height: 54px !important;
  object-fit: cover !important;
}

.diary-upload-file-icon {
  font-size: .68rem;
  font-weight: 700;
  color: #1d4ed8;
  text-align: center;
}

.diary-upload-preview-name {
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  text-align: center;
}

.diary-upload-preview-meta {
  text-align: center;
  width: 100%;
}

.diary-upload-preview .diary-remove-file {
  width: 100%;
}

.settings-menu-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.settings-menu-item {
  border: 1px solid #dbe4f3;
  border-radius: 10px;
  padding: .5rem .65rem;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
}

.settings-logo-preview {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid #dbe4f3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: #94a3b8;
  font-size: .78rem;
}

.settings-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-logo-mini {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #dbe4f3;
  background: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #94a3b8;
}

.dashboard-logo-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topbar-logo-mini {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dbe4f3;
  display: inline-grid;
  place-items: center;
  background: #fff;
  flex: 0 0 auto;
}

.topbar-logo-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kpi-action-btn {
  margin-top: .55rem;
  width: 100%;
  font-weight: 600;
}

.dashboard-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem;
}

.dashboard-quick-actions .btn {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .dashboard-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.dashboard-donut-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: .9rem;
  align-items: center;
}

.dashboard-donut {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  border: 1px solid #dbe4f3;
}

.dashboard-donut-center {
  position: absolute;
  inset: 25px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid #e7eefb;
}

.dashboard-donut-center small {
  color: #64748b;
  font-size: .72rem;
}

.dashboard-donut-center strong {
  color: #0f172a;
  font-size: .95rem;
}

.dashboard-donut-legend {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.dashboard-donut-legend-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  grid-template-rows: auto auto;
  column-gap: .45rem;
}

.dashboard-donut-legend-item i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: .3rem;
}

.dashboard-donut-legend-item span {
  font-size: .88rem;
  color: #0f172a;
}

.dashboard-donut-legend-item small {
  grid-column: 2/3;
  color: #64748b;
}

@media (max-width: 767.98px) {
  .dashboard-donut-wrap {
    grid-template-columns: 1fr;
  }
}
.fuel-legend-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: .15rem .45rem;
}
.fuel-legend-item small {
  color: #64748b;
  font-size: .68rem;
  font-weight: 600;
}
.fuel-legend-item i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.fuel-mini-graph {
  border: 1px solid #dbe4f3;
  border-radius: 10px;
  padding: .4rem .45rem .3rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}
.fuel-mini-graph small {
  display: block;
  color: #64748b;
  font-size: .72rem;
  margin-bottom: .2rem;
}
.fuel-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  margin-bottom: .15rem;
}
.fuel-mini-stats span {
  font-size: .68rem;
  color: #334155;
  background: #eef2ff;
  border: 1px solid #dbe4ff;
  border-radius: 999px;
  padding: .12rem .4rem;
}
.fuel-mini-graph svg {
  width: 100%;
  height: 78px;
  display: block;
}
.fuel-mini-graph line {
  stroke: #cbd5e1;
  stroke-width: 1;
}
.fuel-mini-graph polyline {
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.file-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.file-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.file-preview {
  height: 180px;
  flex: 0 0 180px;
  max-height: 180px;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border-bottom: 1px solid var(--r2ps-border);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.file-card .card-body {
  position: relative;
  z-index: 2;
  background: #fff;
}
.file-preview-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: #64748b;
}
.file-preview-fallback i {
  width: 26px;
  height: 26px;
}
.file-title {
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), rgba(248, 250, 252, 1) 55%);
}

.auth-card {
  width: min(470px, 100%);
  background: #fff;
  border: 1px solid var(--r2ps-border);
  color: var(--r2ps-text);
}

.alert { border: 1px solid transparent; }

.mobile-fab-wrap {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 1200;
}

.mobile-fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid #a7c0f2;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.35);
  transition: transform .15s ease, box-shadow .2s ease;
}

.mobile-fab-btn:active { transform: scale(.96); }

.mobile-fab-btn.is-open {
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.45);
}

.mobile-fab-menu {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 220px;
  background: #ffffff;
  border: 1px solid #d4e0f5;
  border-radius: 14px;
  padding: .45rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .2);
  max-height: min(52vh, 320px);
  overflow-y: auto;
}

.mobile-fab-menu a {
  display: flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  color: #0f172a;
  border-radius: 10px;
  padding: .5rem .6rem;
  font-size: .92rem;
}

.mobile-fab-menu a:hover { background: rgba(37, 99, 235, .08); }

.mobile-fab-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: transparent;
}

@media (max-width: 992px) {
  .sidebar { display: none; }
  .topbar { position: static; }
  .topbar h1 { font-size: 1rem; }
  .topbar .badge,
  .topbar .small.fw-semibold { display: none; }
  .dashboard-kpis .kpi-card { padding: .65rem .55rem; border-radius: 12px; }
  .dashboard-kpis .kpi-card small { font-size: .70rem; }
  .dashboard-kpis .kpi-card h3 { font-size: .86rem; margin-top: .2rem; line-height: 1.2; }
  .agenda-dashboard-item {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
  .agenda-date-chip {
    width: fit-content;
    min-width: 0;
  }
  .file-grid {
    grid-template-columns: 1fr;
  }
  main.container-fluid { padding-bottom: 86px; }
}

.client-diary-viewer {
  position: fixed;
  inset: 0;
  z-index: 1400;
}

.client-diary-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .55);
}

.client-diary-viewer-dialog {
  position: relative;
  width: min(920px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
}

.client-project-board {
  border-radius: 16px;
}

.client-project-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  flex-wrap: wrap;
}

.client-head-badges {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.client-panel {
  border: 1px solid #dbe4f3;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 12px;
  padding: .75rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.client-stage-finance-line {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .9rem;
  margin-bottom: .5rem;
}

.client-stages-list {
  display: grid;
  gap: .55rem;
}

.client-stage-item {
  border: 1px solid #dbe4f3;
  border-radius: 10px;
  background: #fff;
  padding: .6rem .65rem;
  border-left: 4px solid #94a3b8;
}

.client-stage-item.is-done {
  border-left-color: #10b981;
}

.client-stage-item.is-progress {
  border-left-color: #2563eb;
}

.client-stage-item.is-start {
  border-left-color: #f59e0b;
}

.client-table-scroll {
  max-height: 240px;
  overflow: auto;
}

.client-table-scroll thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fbff;
}

.client-diary-list {
  max-height: 540px;
  overflow: auto;
  padding-right: .1rem;
}

.client-kpi {
  border-width: 1px;
}

.client-kpi-total {
  background: linear-gradient(180deg, #ffffff, #f1f5ff);
  border-color: rgba(59, 130, 246, .28);
}

.client-kpi-received {
  background: linear-gradient(180deg, #ffffff, #ecfdf5);
  border-color: rgba(16, 185, 129, .28);
}

.client-kpi-pending {
  background: linear-gradient(180deg, #ffffff, #fff8e8);
  border-color: rgba(245, 158, 11, .28);
}

.client-kpi-expense {
  background: linear-gradient(180deg, #ffffff, #fff1f1);
  border-color: rgba(239, 68, 68, .28);
}

.client-feed-list {
  display: grid;
  gap: .5rem;
}

.client-feed-item {
  border: 1px solid #dbe4f3;
  border-radius: 10px;
  background: #fff;
  padding: .5rem .55rem;
}

.client-feed-value {
  font-weight: 700;
  margin-top: .12rem;
}

.client-diary-filters .btn {
  min-width: 64px;
}

@media (min-width: 1200px) {
  .client-project-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .9fr);
    gap: .9rem;
    align-items: start;
  }

  .client-project-board .card-body {
    padding: 1rem;
  }
}

@media (max-width: 1199px) {
  .client-project-grid {
    display: block;
  }
  .client-side-col {
    margin-top: .75rem;
  }
  .client-diary-list,
  .client-table-scroll {
    max-height: none;
  }
}
