/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --bg: #f5f7f9;
  --surface: #fff;
  --text: #20252b;
  --muted: #65707c;
  --border: #dce3e9;
  --primary: #245a87;
  --primary-dark: #173d5e;
  --success: #2e9d57;
  --danger: #d7534f;
  --info: #2e7fbf;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.shell {
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
  display: grid;
}

.sidebar {
  border-right: 1px solid var(--border);
  background: #fff;
  height: 100vh;
  padding: 26px 18px;
  position: sticky;
  top: 0;
}

.brand {
  letter-spacing: .08em;
  color: var(--primary-dark);
  margin-bottom: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.brand span {
  font-size: 18px;
}

.navItem {
  color: var(--muted);
  border-radius: 10px;
  margin-bottom: 4px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 650;
}

.navItem.active {
  color: var(--primary);
  background: #eaf2f8;
}

.page {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 30px;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.topbar small, .overline {
  letter-spacing: .12em;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.topbar h1 {
  margin: 4px 0 0;
  font-size: 30px;
}

.level {
  color: var(--primary);
  background: #eaf2f8;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
}

.heroMetrics {
  background: var(--primary);
  border-radius: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  display: grid;
}

.heroMetrics article {
  color: #fff;
  background: #ffffff1f;
  border-radius: 11px;
  padding: 15px;
}

.heroMetrics span, .card span {
  color: var(--muted);
  font-size: 12px;
  display: block;
}

.heroMetrics span {
  color: #ddeaf5;
}

.heroMetrics strong, .card strong {
  margin-top: 6px;
  font-size: 22px;
  display: block;
}

.kpis {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
  display: grid;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.card em {
  color: var(--success);
  margin-top: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  display: block;
}

.split {
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  margin-top: 22px;
  display: grid;
}

.split h2 {
  margin: 7px 0;
  font-size: 19px;
}

.split p {
  color: var(--muted);
  max-width: 680px;
  font-size: 14px;
  line-height: 1.6;
}

.mapCard {
  justify-content: space-between;
  align-items: center;
  min-height: 190px;
  display: flex;
}

.deBadge {
  width: 105px;
  height: 105px;
  color: var(--primary);
  background: #e7f0f7;
  border-radius: 50%;
  flex: none;
  place-items: center;
  margin-left: 20px;
  font-size: 30px;
  font-weight: 900;
  display: grid;
}

button {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 9px;
  padding: 10px 15px;
  font-weight: 800;
}

.sectionTitle {
  margin: 24px 0 10px;
  font-size: 18px;
}

.events {
  padding: 0;
  overflow: hidden;
}

.event {
  border-top: 1px solid var(--border);
  border-left: 5px solid var(--info);
  padding: 15px 18px;
}

.event:first-child {
  border-top: 0;
}

.event.chance {
  border-left-color: var(--success);
}

.event.critical {
  border-left-color: var(--danger);
}

.event strong {
  font-size: 14px;
}

.event small {
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

@media (max-width: 900px) {
  .shell {
    display: block;
  }

  .sidebar {
    display: none;
  }

  .page {
    padding: 16px;
  }

  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .split, .heroMetrics {
    grid-template-columns: 1fr;
  }

  .mapCard {
    align-items: flex-start;
  }

  .deBadge {
    width: 75px;
    height: 75px;
  }
}

.emptyState {
  color: var(--muted);
  padding: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.brandLink, .navItem, .mapCardLink {
  text-decoration: none;
}

.navItem {
  display: block;
}

.navDisabled {
  opacity: .45;
  cursor: default;
}

.mapCardLink {
  color: inherit;
  transition: transform .16s, border-color .16s, box-shadow .16s;
}

.mapCardLink:hover {
  border-color: #b9cedf;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px #1c3e5914;
}

.inlineLink {
  color: var(--primary) !important;
  margin-top: 12px !important;
  font-weight: 800 !important;
}

.mapTopbar {
  align-items: flex-start;
}

.pageIntro {
  color: var(--muted);
  max-width: 760px;
  margin: 7px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.versionPill {
  color: var(--primary);
  background: #eaf2f8;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.realMapCard {
  padding: 18px;
  overflow: hidden;
}

.realMapHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
  display: flex;
}

.realMapHeader h2 {
  margin: 5px 0 0;
  font-size: 22px;
}

.realMapHeader p {
  max-width: 760px;
  color: var(--muted);
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.mapStatus {
  color: var(--primary);
  background: #eaf2f8;
  border: 1px solid #c8dceb;
  border-radius: 999px;
  flex: none;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}

.mapStatus[data-state="loading"] {
  color: var(--muted);
  border-color: var(--border);
  background: #f4f6f8;
}

.mapStatus[data-state="error"] {
  color: var(--danger);
  background: #fff3f2;
  border-color: #f0c8c6;
}

.realMap {
  border: 1px solid var(--border);
  background: #e9eef2;
  border-radius: 14px;
  width: 100%;
  height: min(72vh, 780px);
  min-height: 560px;
  overflow: hidden;
}

.mapFootnote {
  color: #8a96a2;
  padding: 10px 2px 0;
  font-size: 10px;
  line-height: 1.4;
}

.mapPage {
  max-width: 1600px;
}

.realMap .maplibregl-ctrl button {
  color: #333;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 400;
}

.realMap .maplibregl-ctrl-attrib {
  font-size: 10px;
}

.realMap .maplibregl-ctrl-scale {
  color: #39434b;
  background: #ffffffe0;
  border-color: #56616a;
  font-size: 10px;
}

@media (max-width: 900px) {
  .realMapCard {
    padding: 10px;
  }

  .realMapHeader {
    display: block;
  }

  .mapStatus {
    margin-top: 10px;
    display: inline-block;
  }

  .realMap {
    border-radius: 10px;
    height: 68vh;
    min-height: 480px;
  }

  .mapFootnote {
    font-size: 9px;
  }
}

.mapLayout {
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: stretch;
  gap: 12px;
  display: grid;
}

.mapLayout .realMap {
  height: min(72vh, 780px);
  min-height: 560px;
}

.mapSelectionPanel {
  border: 1px solid var(--border);
  background: #f8fafb;
  border-radius: 14px;
  min-width: 0;
  padding: 16px;
}

.mapSelectionTitle {
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  display: flex;
}

.mapSelectionTitle h3 {
  margin: 0;
  font-size: 16px;
}

.mapSelectionTitle p {
  color: var(--muted);
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.4;
}

.stateCodeBadge {
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: #e7f0f7;
  border-radius: 12px;
  flex: none;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  display: grid;
}

.mapSelectionEmpty {
  border: 1px solid var(--border);
  color: var(--muted);
  background: #fff;
  border-radius: 10px;
  margin-top: 14px;
  padding: 12px;
  font-size: 11px;
  line-height: 1.55;
}

.realMap .maplibregl-canvas {
  outline: none;
}

@media (max-width: 1050px) {
  .mapLayout {
    grid-template-columns: 1fr;
  }

  .mapLayout .realMap {
    height: 68vh;
  }

  .mapSelectionPanel {
    min-height: 120px;
  }
}

@media (max-width: 700px) {
  .mapLayout .realMap {
    height: 64vh;
    min-height: 470px;
  }

  .mapSelectionPanel {
    padding: 13px;
  }
}

.realMapWrap {
  min-width: 0;
  position: relative;
}

.realMapWrap .realMap {
  z-index: 1;
  position: relative;
}

/* [project]/apps/web/src/app/onboarding.css [app-client] (css) */
.authPage {
  background: linear-gradient(135deg, #eef4f8 0%, #f8fafc 55%, #eef2f5 100%);
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.authCard {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 18px;
  width: min(100%, 460px);
  padding: 28px;
  box-shadow: 0 18px 55px #1e384e1a;
}

.authBrand {
  margin-bottom: 24px;
  display: inline-block;
}

.authCard h1 {
  margin: 8px 0 6px;
  font-size: 30px;
}

.authCard > p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
}

.authForm {
  gap: 14px;
  display: grid;
}

.authForm label, .foundingNameCard label {
  color: var(--text);
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}

.authForm input, .foundingNameCard input {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  font: inherit;
  background: #fff;
  border-radius: 10px;
  outline: none;
  padding: 12px 13px;
}

.authForm input:focus, .foundingNameCard input:focus {
  border-color: #8fb4d1;
  box-shadow: 0 0 0 3px #245a871a;
}

.authForm button {
  margin-top: 4px;
  padding: 12px 15px;
}

.authFooter {
  border-top: 1px solid var(--border);
  color: var(--muted);
  margin-top: 18px;
  padding-top: 16px;
  font-size: 13px;
}

.authFooter a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.formError {
  color: #9f3632;
  background: #fff3f2;
  border: 1px solid #efc8c6;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.secondaryButton {
  color: var(--primary);
  background: #fff;
  border: 1px solid #c9dbe8;
  padding: 9px 12px;
}

.secondaryButton:hover {
  background: #f3f8fb;
}

.topbarActions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.playerPill {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  min-width: 120px;
  padding: 7px 10px;
}

.playerPill span {
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  display: block;
}

.playerPill small {
  color: var(--muted);
  margin-top: 2px;
  font-size: 10px;
  display: block;
}

.foundingPage {
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px;
}

.foundingTopbar {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
}

.foundingTopbar h1 {
  margin: 5px 0 4px;
  font-size: 30px;
}

.foundingTopbar p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.foundingForm {
  gap: 14px;
  display: grid;
}

.foundingNameCard {
  max-width: 760px;
}

.foundingNameCard h2 {
  margin: 6px 0;
}

.foundingNameCard p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.5;
}

.foundingMapSection {
  gap: 8px;
  display: grid;
}

.foundingStepLabel {
  padding-left: 2px;
}

.foundingSubmitCard {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.foundingSubmitCard strong {
  font-size: 15px;
}

.foundingSubmitCard p {
  color: var(--muted);
  max-width: 850px;
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.foundingSubmitCard button {
  flex: none;
  padding: 12px 18px;
}

.foundingError {
  max-width: 760px;
}

.locationValidation {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  margin-top: 14px;
  padding: 12px;
}

.locationValidation strong {
  margin: 0;
  font-size: 12px;
}

.locationValidation p {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: 11px;
  line-height: 1.55;
}

.locationValidation small {
  color: var(--primary-dark);
  margin-top: 7px;
  font-size: 10px;
  font-weight: 800;
  display: block;
}

.locationValidation[data-state="valid"] {
  background: #f2fbf5;
  border-color: #add8bd;
}

.locationValidation[data-state="valid"] strong {
  color: var(--success);
}

.locationValidation[data-state="invalid"], .locationValidation[data-state="error"] {
  background: #fff6f5;
  border-color: #efc8c6;
}

.locationValidation[data-state="invalid"] strong, .locationValidation[data-state="error"] strong {
  color: var(--danger);
}

.locationValidation[data-state="validating"] {
  background: #f4f9fc;
  border-color: #c8dceb;
}

.starterPage {
  max-width: 1500px;
  margin: 0 auto;
  padding: 28px;
}

.starterTopbar {
  margin-bottom: 22px;
}

.starterForm {
  gap: 28px;
  display: grid;
}

.starterSectionHeading {
  margin-bottom: 11px;
}

.starterSectionHeading h2 {
  margin: 5px 0 0;
  font-size: 21px;
}

.starterGrid {
  gap: 12px;
  display: grid;
}

.starterVehicleGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.starterEmployeeGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.starterChoice {
  cursor: pointer;
  min-width: 0;
  display: block;
}

.starterChoice > input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.starterChoiceBody {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  flex-direction: column;
  height: 100%;
  padding: 17px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex;
}

.starterChoice:hover .starterChoiceBody {
  border-color: #b9cedf;
  transform: translateY(-1px);
}

.starterChoice > input:checked + .starterChoiceBody {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #245a871f;
}

.starterChoice > input:focus-visible + .starterChoiceBody {
  outline-offset: 2px;
  outline: 3px solid #245a8738;
}

.starterChoiceTitle {
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.starterChoiceText {
  color: var(--muted);
  min-height: 36px;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.5;
}

.starterStats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  display: grid;
}

.starterStats > span {
  background: #f6f9fb;
  border-radius: 9px;
  min-width: 0;
  padding: 9px;
}

.starterStats small {
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  display: block;
}

.starterStats strong {
  color: var(--primary-dark);
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.25;
  display: block;
}

.starterSubmitCard {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.starterSubmitCard strong {
  font-size: 15px;
}

.starterSubmitCard p {
  color: var(--muted);
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.starterSubmitCard button {
  flex: none;
  padding: 12px 18px;
}

.starterError {
  max-width: 800px;
}

@media (max-width: 1150px) {
  .starterEmployeeGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbarActions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .foundingPage, .starterPage {
    padding: 16px;
  }

  .foundingTopbar {
    display: block;
  }

  .foundingTopbar form {
    margin-top: 12px;
  }

  .foundingSubmitCard, .starterSubmitCard {
    display: block;
  }

  .foundingSubmitCard button, .starterSubmitCard button {
    width: 100%;
    margin-top: 14px;
  }

  .starterVehicleGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .starterEmployeeGrid {
    grid-template-columns: 1fr;
  }

  .starterForm {
    gap: 22px;
  }

  .starterChoiceText {
    min-height: 0;
  }
}

/* [project]/apps/web/src/app/resources.css [app-client] (css) */
.starterAssetFrame {
  border: 1px solid var(--border);
  background: linear-gradient(#f7fafc 0%, #edf3f7 100%);
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.vehicleAssetFrame {
  border-radius: 14px;
  height: 150px;
  margin-bottom: 14px;
}

.vehicleAsset {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.employeeIdentity {
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-bottom: 12px;
  display: grid;
}

.employeeAssetFrame {
  background: #f7fafc;
  border-radius: 18px;
  width: 88px;
  height: 88px;
  padding: 3px;
}

.employeeAvatar {
  object-fit: contain;
  object-position: center bottom;
  width: 100%;
  height: 100%;
}

.employeeCopy {
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding-top: 2px;
  display: flex;
}

.employeeCopy .starterChoiceTitle {
  display: block;
}

.employeeCopy .starterChoiceText {
  min-height: 0;
  margin-top: 5px;
  display: block;
}

.resourceOverviewCard {
  grid-template-columns: minmax(190px, 280px) minmax(220px, 1fr) minmax(230px, 330px);
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  display: grid;
  overflow: hidden;
}

.resourceVehicleVisual {
  border: 1px solid var(--border);
  background: linear-gradient(#f7fafc 0%, #edf3f7 100%);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  height: 150px;
  display: flex;
}

.resourceVehicleVisual img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 8px;
}

.resourceOverviewContent h2 {
  margin: 6px 0 4px;
  font-size: 21px;
}

.resourceOverviewContent p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.resourceDriverCard {
  border: 1px solid var(--border);
  background: #f8fafb;
  border-radius: 13px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}

.resourceDriverCard img {
  object-fit: contain;
  object-position: center bottom;
  background: #eaf0f4;
  border-radius: 14px;
  width: 64px;
  height: 64px;
  padding: 3px;
}

.resourceDriverCard small, .resourceDriverCard span {
  color: var(--muted);
  font-size: 10px;
  display: block;
}

.resourceDriverCard strong {
  margin: 3px 0;
  font-size: 14px;
  display: block;
}

.resourceDriverCard span {
  line-height: 1.35;
}

@media (max-width: 950px) {
  .resourceOverviewCard {
    grid-template-columns: 180px 1fr;
  }

  .resourceDriverCard {
    grid-column: 1 / -1;
  }

  .vehicleAssetFrame {
    height: 130px;
  }
}

@media (max-width: 650px) {
  .employeeIdentity {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .employeeAssetFrame {
    border-radius: 15px;
    width: 72px;
    height: 72px;
    padding: 2px;
  }

  .resourceOverviewCard {
    grid-template-columns: 1fr;
  }

  .resourceVehicleVisual {
    height: 135px;
  }

  .resourceDriverCard {
    grid-column: auto;
  }
}

/* [project]/apps/web/src/app/management.css [app-client] (css) */
.managementPage {
  max-width: 1480px;
}

.managementTopbar {
  align-items: flex-start;
}

.managementNotice {
  border-radius: 11px;
  margin: 0 0 14px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

.successNotice {
  color: #237a43;
  background: #eaf7ef;
  border: 1px solid #bce2ca;
}

.errorNotice {
  color: #b6403b;
  background: #fff1f0;
  border: 1px solid #edc0bd;
}

.managementGrid {
  gap: 14px;
  display: grid;
}

.vehicleGrid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.personnelGrid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.managementCard {
  min-width: 0;
}

.managementVehicleImage {
  border: 1px solid var(--border);
  background: linear-gradient(#f7fafc, #edf3f7);
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  height: 190px;
  margin-bottom: 14px;
  display: flex;
  overflow: hidden;
}

.managementVehicleImage img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 12px;
}

.managementCardHeader {
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.managementCardHeader h2, .personnelCopy h2 {
  margin: 4px 0 0;
  font-size: 21px;
}

.statusBadge {
  white-space: nowrap;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 850;
  display: inline-flex;
}

.statusBadge.available {
  color: #237a43;
  background: #eaf7ef;
}

.statusBadge.moving {
  color: #a95818;
  background: #fff1e8;
}

.vehicleStats, .personnelStats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 15px 0;
  display: grid;
}

.vehicleStats > div, .personnelStats > div {
  border: 1px solid var(--border);
  background: #f8fafb;
  border-radius: 10px;
  padding: 10px;
}

.vehicleStats span, .personnelStats span {
  color: var(--muted);
  font-size: 10px;
}

.vehicleStats strong, .personnelStats strong {
  margin-top: 4px;
  font-size: 14px;
}

.driverAssignmentBox {
  border-top: 1px solid var(--border);
  margin-top: 14px;
  padding-top: 14px;
}

.assignedDriverRow, .personnelVehicleRow {
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  display: flex;
}

.assignedDriverRow img {
  object-fit: contain;
  object-position: center bottom;
  background: #eef3f6;
  border-radius: 12px;
  width: 52px;
  height: 52px;
}

.assignedDriverRow strong, .assignedDriverRow small, .personnelVehicleRow strong, .personnelVehicleRow small {
  display: block;
}

.assignedDriverRow small, .personnelVehicleRow small {
  color: var(--muted);
  margin-top: 3px;
  font-size: 10px;
}

.personnelVehicleRow img {
  object-fit: contain;
  border: 1px solid var(--border);
  background: #f1f5f7;
  border-radius: 10px;
  width: 72px;
  height: 52px;
  padding: 3px;
}

.assignmentForm {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 10px;
  display: grid;
}

.assignmentForm select {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  font: inherit;
  background: #fff;
  border-radius: 9px;
  padding: 10px;
}

.assignmentForm button:disabled, .secondaryManagementButton:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.secondaryManagementButton {
  color: var(--primary-dark);
  background: #eef3f6;
  margin-top: 8px;
}

.movementLock {
  color: #a95818;
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 750;
}

.mutedText {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.personnelIdentity {
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  display: grid;
}

.personnelAvatarFrame {
  border: 1px solid var(--border);
  background: linear-gradient(#f7fafc, #edf3f7);
  border-radius: 18px;
  justify-content: center;
  align-items: flex-end;
  width: 96px;
  height: 96px;
  display: flex;
  overflow: hidden;
}

.personnelAvatarFrame img {
  object-fit: contain;
  object-position: center bottom;
  width: 100%;
  height: 100%;
  padding: 3px;
}

.personnelCopy p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.personnelStats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 700px) {
  .vehicleGrid, .personnelGrid, .assignmentForm {
    grid-template-columns: 1fr;
  }

  .personnelIdentity {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .personnelAvatarFrame {
    width: 78px;
    height: 78px;
  }

  .vehicleStats, .personnelStats {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=apps_web_src_app_0-jd6_5._.css.map*/