/* assets/css/app.css */
.note-img { max-width: 140px; height: auto; border-radius: 6px; margin: 4px; }
.status-badge { font-size: 0.85rem; }

/* ---- Job Details tidy UI ---- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (min-width: 992px) { /* lg+ */
  .detail-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.detail-card {
  background: #f8f9fa;            /* light gray */
  border: 1px solid #e5e7eb;      /* subtle border */
  border-radius: .5rem;
  padding: .75rem .85rem;
  min-height: 84px;
}
.detail-icon {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 4px;
}
.detail-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6c757d;
  margin-bottom: 2px;
}
.detail-value {
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.description-box {
  border-left: 4px solid #3c8dbc; /* AdminLTE primary */
  padding-left: .75rem;
}

/* Thumbnails inside notes / sidebar */
.note-img {
  height: 80px;
  width: auto;
  margin: 4px 6px 0 0;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  object-fit: cover;
}
