.vehicle-detail-modal{
  display:flex;
  flex-direction:column;
  gap:16px;
}


.vehicle-detail-modal .shared-dashboard-section-header{
  margin-bottom:0;
}


.vehicle-detail-modal .summary-grid{
  margin:0;
}


.vehicle-detail-modal .shared-dashboard-section{
  margin:0;
  padding:16px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:12px;
}


.vehicle-detail-modal .shared-dashboard-section > h3{
  margin:0 0 14px;
  font-size:15px;
}


.vehicle-detail-grid{
  display:grid;
  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );
  gap:12px;
}


.vehicle-detail-item{
  min-width:0;
  padding:12px 14px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:10px;
}


.vehicle-detail-label{
  margin-bottom:5px;
  color:#64748b;
  font-size:11px;
  font-weight:600;
}


.vehicle-detail-value{
  color:#111827;
  font-size:13px;
  font-weight:600;
  word-break:break-word;
}


.vehicle-detail-modal .shared-dashboard-empty{
  min-height:auto;
  padding:12px 14px;
  color:#64748b;
  background:#f8fafc;
  border:1px dashed #d1d5db;
  border-radius:8px;
  text-align:left;
}


.vehicle-detail-json{
  max-height:320px;
  margin:0;
  padding:14px;
  overflow:auto;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:8px;
  font-size:12px;
  white-space:pre-wrap;
  word-break:break-word;
}


@media (max-width: 900px){

  .vehicle-detail-grid{
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

}


@media (max-width: 600px){

  .vehicle-detail-grid{
    grid-template-columns:
      1fr;
  }

}