@font-face {
  font-family: 'Anakotmai';
  src: url('../fonts/Anakotmai-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anakotmai';
  src: url('../fonts/Anakotmai-Medium.ttf') format('truetype');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anakotmai';
  src: url('../fonts/Anakotmai-Bold.ttf') format('truetype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bs-font-sans-serif: 'Anakotmai', 'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
}

html,
body,
button,
input,
select,
textarea,
.pc-container,
.pc-sidebar,
.pc-header,
.modal,
.dropdown-menu {
  font-family: var(--bs-body-font-family) !important;
}

.mk-page {
  --mk-radius: 22px;
}

.mk-rounded,
.mk-rounded-card,
.mk-modal,
.mk-page .card,
.mk-page .form-control,
.mk-page .form-select,
.mk-page .btn {
  border-radius: var(--mk-radius);
}

.mk-page .form-control,
.mk-page .form-select {
  min-height: 42px;
}

.mk-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.mk-toolbar h5 {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
}

.mk-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.mk-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px !important;
}

.mk-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.mk-stat-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 54px;
  padding: 8px 9px;
  background: #fff;
  border: 1px solid #e7eaee;
  border-radius: 16px;
}

.mk-stat-card span {
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.mk-stat-card strong {
  margin-left: auto;
  color: #111827;
  font-size: 20px;
  line-height: 1;
}

.mk-vehicle-stat-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow: visible;
  padding-bottom: 0;
}

.mk-vehicle-stat-row .mk-stat-card {
  min-width: 0;
  flex: 1 1 0;
}

.mk-stat-card .mk-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 50%;
  font-size: 15px;
}

.mk-vehicle-stat-row .mk-stat-card > span:not(.mk-stat-icon) {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(1) {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(1) .mk-stat-icon {
  color: #1d4ed8;
  background: #dbeafe;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(2) {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(2) .mk-stat-icon {
  color: #15803d;
  background: #dcfce7;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(3) {
  border-color: #ddd6fe;
  background: #f5f3ff;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(3) .mk-stat-icon {
  color: #6d28d9;
  background: #ede9fe;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(6) {
  border-color: #fed7aa;
  background: #fff7ed;
}

.mk-vehicle-stat-row .mk-stat-card:nth-child(6) .mk-stat-icon {
  color: #c2410c;
  background: #ffedd5;
}

.mk-stat-alert {
  border-color: #fde68a;
  background: #fffbeb;
}

.mk-stat-alert .mk-stat-icon {
  color: #92400e;
  background: #fef3c7;
}

.mk-stat-alert span {
  color: #92400e;
}

.mk-stat-alert strong {
  color: #78350f;
}

.mk-people-list {
  display: flex;
  flex-direction: column;
}

.mk-person-row {
  display: grid;
  grid-template-columns: 48px minmax(180px, 1fr) auto minmax(120px, auto);
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #eef1f5;
}

.mk-person-row:last-child {
  border-bottom: 0;
}

.mk-avatar {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: #fff;
  background: #2563eb;
  border-radius: 50%;
  font-weight: 700;
}

.mk-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-person-name {
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
}

.mk-person-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
}

.mk-person-meta span {
  padding: 2px 8px;
  background: #f3f4f6;
  border-radius: 999px;
}

.mk-person-side {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.mk-person-license {
  text-align: right;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
}

.mk-person-license small {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
}

.mk-compact-page .mk-toolbar {
  margin-bottom: 10px;
}

.mk-compact-page .mk-stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.mk-compact-page .mk-stat-card {
  min-height: 52px;
  padding: 9px 11px;
}

.mk-compact-page .mk-vehicle-stat-row {
  display: flex;
  flex-wrap: nowrap;
}
}

.mk-driver-list {
  display: flex;
  flex-direction: column;
}

.mk-driver-table {
  overflow-x: auto;
}

.mk-driver-table-head,
.mk-driver-table-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(130px, .9fr) minmax(88px, .55fr) minmax(108px, .7fr) minmax(110px, .7fr) minmax(92px, .55fr) minmax(84px, .5fr) minmax(106px, .6fr) 42px;
  align-items: center;
  gap: 8px;
  min-width: 1180px;
}

.mk-driver-table-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 10px 12px;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 700;
}

.mk-driver-table-row {
  min-height: 58px;
  padding: 8px 12px;
  border-bottom: 1px solid #eef1f5;
}

.mk-driver-table-row:last-child {
  border-bottom: 0;
}

.mk-driver-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mk-driver-profile .mk-avatar {
  width: 40px;
  height: 40px;
}

.mk-driver-row {
  display: grid;
  grid-template-columns: 42px minmax(170px, 230px) minmax(0, 1fr) 36px;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 12px;
  border-bottom: 1px solid #eef1f5;
}

.mk-driver-row:last-child {
  border-bottom: 0;
}

.mk-driver-row .mk-avatar {
  width: 42px;
  height: 42px;
}

.mk-driver-name {
  min-width: 0;
}

.mk-driver-name strong {
  display: block;
  overflow: hidden;
  color: #111827;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-driver-name span {
  color: #6b7280;
  font-size: 11px;
}

.mk-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.mk-role-badge i {
  font-size: 13px;
}

.mk-role-driver {
  color: #92400e;
  background: #fef3c7;
}

.mk-role-assistant {
  color: #047857;
  background: #d1fae5;
}

.mk-driver-data {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  gap: 6px;
  min-width: 0;
}

.mk-driver-data span {
  overflow: hidden;
  min-height: 26px;
  padding: 5px 8px;
  color: #374151;
  background: #f8fafc;
  border-radius: 999px;
  font-size: 11px;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-data-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  max-width: 100%;
  overflow: hidden;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-data-cell {
  display: block;
  overflow: hidden;
  min-height: 22px;
  color: #111827;
  font-size: 12px;
  font-weight: 650;
  line-height: 22px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-data-cell-stack {
  display: block;
  min-height: 32px;
  line-height: 16px;
  white-space: normal;
}

.mk-pair-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1.2;
}

.mk-pair-break {
  display: none;
}

.mk-data-cell-stack strong,
.mk-data-cell-stack small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-data-cell-stack strong {
  color: #111827;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.mk-data-cell-stack small {
  color: #64748b;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
}

.mk-vehicle-table {
  overflow-x: auto;
}

.mk-vehicle-table-head,
.mk-vehicle-table-row {
  display: grid;
  grid-template-columns: minmax(185px, 1.05fr) minmax(180px, 1fr) minmax(190px, 1.05fr) minmax(170px, .95fr) minmax(105px, .58fr) minmax(145px, .78fr) minmax(200px, 1.05fr) minmax(104px, .62fr) 42px;
  align-items: center;
  column-gap: 10px;
  row-gap: 0;
  min-width: 1380px;
}

.mk-vehicle-table-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 9px 14px;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.mk-vehicle-table-row {
  min-height: 78px;
  padding: 10px 14px;
  border-bottom: 1px solid #eef1f5;
}

.mk-vehicle-table-row:hover {
  background: #f8fafc;
}

.mk-vehicle-table-row:last-child {
  border-bottom: 0;
}

.mk-vehicle-table .mk-data-cell,
.mk-vehicle-table .mk-status-badge {
  justify-self: start;
  text-align: left;
}

.mk-vehicle-table .mk-vehicle-driver {
  justify-content: flex-start;
}

.mk-vehicle-table-row > * {
  min-width: 0;
}

.mk-vehicle-table-row > .mk-vehicle-name {
  grid-column: 1;
}

.mk-vehicle-table-row > .mk-vehicle-name + .mk-data-cell {
  grid-column: 2;
}

.mk-vehicle-table-row > .mk-vehicle-driver {
  grid-column: 3;
}

.mk-vehicle-table-row > .mk-vehicle-spec-cell {
  grid-column: 4;
}

.mk-vehicle-table-row > .mk-vehicle-spec-cell + .mk-data-cell {
  grid-column: 5;
}

.mk-vehicle-table-row > .mk-vehicle-spec-cell + .mk-data-cell + .mk-data-cell {
  grid-column: 6;
}

.mk-vehicle-table-row > .mk-doc-cell {
  grid-column: 7;
}

.mk-vehicle-table-row > .mk-status-badge {
  grid-column: 8;
}

.mk-vehicle-action-cell {
  grid-column: 9;
  grid-row: 1;
  align-self: center;
}

.mk-vehicle-spec-cell {
  gap: 3px;
}

.mk-vehicle-spec-cell strong {
  font-size: 13px;
}

.mk-vehicle-spec-cell small {
  white-space: normal;
}

.mk-doc-cell {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.mk-doc-cell span {
  display: grid;
  grid-template-columns: 16px 44px minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.mk-doc-cell i {
  color: #0f766e;
  font-size: 14px;
}

.mk-doc-cell strong {
  color: #475569;
  font-size: 11px;
  font-weight: 800;
}

.mk-doc-cell small {
  overflow: hidden;
  color: #111827;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-vehicle-name {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.mk-vehicle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 50%;
  font-size: 17px;
}

.mk-vehicle-name strong,
.mk-vehicle-name small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-vehicle-name strong {
  color: #111827;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.mk-vehicle-name small {
  margin-top: 3px;
  color: #64748b;
  font-size: 10px;
}

.mk-vehicle-driver {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 6px;
  color: #111827;
  font-size: 12px;
  font-weight: 650;
}

.mk-vehicle-driver > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-driver-mini-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  overflow: hidden;
  color: #fff;
  background: #4f46e5;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.mk-driver-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mk-status-badge {
  gap: 4px;
  min-height: 22px;
  width: fit-content;
  min-width: 0;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 750;
  line-height: 14px;
}

.mk-status-badge i {
  font-size: 12px;
}

.mk-customer-table {
  overflow-x: auto;
}

.mk-customer-table-head,
.mk-customer-table-row {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(96px, .55fr) minmax(170px, .9fr) minmax(210px, 1.1fr) minmax(160px, .85fr) minmax(98px, .55fr) 42px;
  align-items: center;
  gap: 8px;
  min-width: 1120px;
}

.mk-customer-table-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 10px 12px;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 700;
}

.mk-customer-table-row {
  min-height: 58px;
  padding: 8px 12px;
  border-bottom: 1px solid #eef1f5;
}

.mk-customer-table-row:last-child {
  border-bottom: 0;
}

.mk-customer-table .mk-data-cell,
.mk-customer-table .mk-data-badge,
.mk-customer-table .mk-status-badge {
  justify-self: start;
  text-align: left;
}

.mk-customer-name {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.mk-customer-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  overflow: hidden;
  color: #fff;
  background: #0f766e;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.mk-customer-name strong,
.mk-customer-name small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-customer-name strong {
  color: #111827;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.mk-customer-name small {
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
}

.mk-plan-table {
  overflow: visible;
}

.mk-plan-table-head,
.mk-plan-table-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(110px, .6fr) minmax(110px, .6fr) minmax(130px, .7fr) 42px;
  align-items: center;
  gap: 8px;
}

.mk-plan-table-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 10px 12px;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 700;
}

.mk-plan-table-row {
  min-height: 58px;
  padding: 8px 12px;
  border-bottom: 1px solid #eef1f5;
}

.mk-plan-table-row:last-child {
  border-bottom: 0;
}

.mk-plan-table .mk-data-cell,
.mk-plan-table .mk-status-badge {
  justify-self: start;
  text-align: left;
}

.mk-plan-name,
.mk-plan-destination {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.mk-plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 50%;
  font-size: 19px;
}

.mk-plan-name strong,
.mk-plan-name small,
.mk-plan-destination strong,
.mk-plan-destination small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mk-plan-name strong,
.mk-plan-destination strong {
  color: #111827;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.mk-plan-name small,
.mk-plan-destination small {
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
}

.mk-plan-destination {
  display: block;
}

.mk-action-dropdown {
  justify-self: start;
}

.mk-action-menu {
  min-width: 188px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.mk-action-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 12px;
  color: #334155;
  font-size: 12px;
  font-weight: 650;
}

.mk-action-menu .dropdown-item i {
  color: #2563eb;
  font-size: 16px;
}

.mk-modal-summary {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
}

.mk-modal-summary span {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.mk-modal-summary strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
}

.mk-modal-summary small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
}

.mk-form-divider {
  margin: 10px 0 12px;
  padding-top: 12px;
  border-top: 1px solid #eef1f5;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.mk-badge-blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.mk-badge-slate {
  color: #334155;
  background: #e2e8f0;
}

.mk-badge-violet {
  color: #6d28d9;
  background: #ede9fe;
}

.mk-badge-amber {
  color: #92400e;
  background: #fef3c7;
}

.mk-badge-green {
  color: #047857;
  background: #d1fae5;
}

.mk-badge-cyan {
  color: #0e7490;
  background: #cffafe;
}

.mk-badge-indigo {
  color: #4338ca;
  background: #e0e7ff;
}

.mk-badge-orange {
  color: #c2410c;
  background: #ffedd5;
}

.mk-circle-action {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50% !important;
}

.mk-modal {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
}

.mk-modal .modal-body {
  padding: 16px 18px 10px;
}

.mk-modal .modal-header,
.mk-modal .modal-footer {
  padding: 14px 18px;
}

.mk-modal .modal-header,
.mk-modal .modal-footer {
  border-color: #eef1f5;
}

.mk-compact-form .form-label {
  margin-bottom: 4px;
  color: #475569;
  font-size: 12px;
  font-weight: 650;
}

.mk-compact-form .form-control,
.mk-compact-form .form-select {
  min-height: 38px;
  padding: 7px 12px;
  font-size: 13px;
}

.mk-result-modal {
  position: relative;
  align-items: center;
  border: 0;
  border-radius: 30px;
  padding: 30px 26px 34px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.mk-result-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f3f6fb;
  background-size: 10px;
  opacity: 0.6;
}

.mk-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  border-radius: 22px;
  color: #fff;
  background: #3fbd63;
  font-size: 42px;
  box-shadow: 0 18px 38px rgba(63, 189, 99, 0.28);
}

.mk-result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 16px;
  border-radius: 999px;
  color: #168044;
  background: #d9f5e3;
  font-size: 13px;
  font-weight: 700;
}

.mk-result-modal h4 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 800;
}

.mk-result-modal p {
  max-width: 360px;
  margin: 0 0 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.mk-result-box {
  width: 100%;
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid #dbe4ef;
  border-radius: 20px;
  text-align: left;
  background: #f8fafc;
}

.mk-result-box span {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.mk-result-box strong {
  color: #0f172a;
  font-size: 16px;
  font-weight: 750;
}

.mk-result-button {
  min-width: 138px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #3fbd63;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(63, 189, 99, 0.24);
}

.mk-result-button:hover,
.mk-result-button:focus {
  background: #34a853;
}

@media (max-width: 767.98px) {
  .mk-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .mk-toolbar-actions {
    justify-content: flex-start;
  }

  .mk-stat-row {
    grid-template-columns: 1fr;
  }

  .mk-person-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .mk-driver-row {
    grid-template-columns: 42px minmax(0, 1fr) 34px;
  }

  .mk-driver-data {
    grid-column: 2 / 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-person-side,
  .mk-person-license {
    grid-column: 2;
    justify-content: flex-start;
    text-align: left;
  }
}

.mk-page .mk-stat-row.mk-vehicle-stat-row {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 6px !important;
  overflow: visible !important;
}

.mk-page .mk-stat-row.mk-vehicle-stat-row .mk-stat-card {
  min-width: 0 !important;
  width: auto !important;
}
