/* Fleetexo v84 - Alınan iş detayları ve mobil kart optimizasyonu */
.fx84-content { max-width: 1180px; }
.fx84-job-list { display: grid; gap: 18px; margin-top: 18px; }
.fx84-job-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(145deg, rgba(13,24,38,.96), rgba(6,11,19,.96));
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}
.fx84-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fx84-card-head h2 {
  margin: 5px 0 6px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
}
.fx84-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 150px;
  text-align: right;
}
.fx84-head-right strong {
  color: #fff;
  font-size: 17px;
}
.fx84-summary-grid,
.fx84-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.fx84-summary-grid {
  margin: 14px 0;
}
.fx84-summary-grid > div,
.fx84-detail-item,
.fx84-note {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  padding: 12px 13px;
  min-width: 0;
}
.fx84-summary-grid span,
.fx84-detail-item span,
.fx84-note span {
  display: block;
  color: rgba(220,229,242,.68);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.fx84-summary-grid b,
.fx84-detail-item b {
  display: block;
  color: #f7fbff;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.fx84-details-box {
  border: 1px solid rgba(242,194,83,.18);
  border-radius: 18px;
  background: rgba(0,0,0,.14);
  padding: 0;
  margin-top: 12px;
}
.fx84-details-box > summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  color: #f7d77a;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fx84-details-box > summary::-webkit-details-marker { display: none; }
.fx84-details-box > summary::after {
  content: '⌄';
  float: right;
  transform: translateY(-1px);
  opacity: .8;
}
.fx84-details-box[open] > summary::after { content: '⌃'; }
.fx84-job-details { padding: 14px; display: grid; gap: 14px; }
.fx84-section {
  border-radius: 18px;
  background: rgba(9,18,30,.62);
  border: 1px solid rgba(255,255,255,.07);
  padding: 14px;
}
.fx84-section h3 {
  margin: 0 0 12px;
  font-size: 15px;
  color: #fff;
}
.fx84-route-link { margin-top: 12px; }
.fx84-note { margin-top: 10px; }
.fx84-note p {
  margin: 0;
  color: #edf4ff;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.fx84-privacy-note { margin: 10px 2px 0; font-size: 12px; }
.fx84-timeline { max-height: 270px; overflow: auto; padding-right: 3px; }
.fx84-action-area,
.fx84-job-actions {
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.fx84-assign-form label {
  display: block;
  font-size: 13px;
  color: rgba(220,229,242,.72);
  margin-bottom: 8px;
  font-weight: 800;
}
.fx84-assign-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.fx84-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: stretch;
}
.fx84-action-buttons .action-unit {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.fx84-action-buttons .btn,
.fx84-assign-row .btn { min-height: 40px; }
.fx84-proof-row {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 10px;
  margin: 12px 0;
}
.fx84-empty { padding: 24px; color: rgba(229,237,249,.8); }

@media (max-width: 980px) {
  .fx84-summary-grid,
  .fx84-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .fx84-content { padding-left: 12px !important; padding-right: 12px !important; }
  .fx84-job-list { gap: 14px; }
  .fx84-job-card { border-radius: 22px; padding: 14px !important; }
  .fx84-card-head {
    flex-direction: column;
    gap: 10px;
  }
  .fx84-head-right {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .fx84-summary-grid,
  .fx84-detail-grid { grid-template-columns: 1fr; }
  .fx84-section { padding: 12px; border-radius: 16px; }
  .fx84-job-details { padding: 10px; gap: 10px; }
  .fx84-details-box > summary { padding: 13px; }
  .fx84-assign-row { grid-template-columns: 1fr; }
  .fx84-assign-row select,
  .fx84-assign-row button { width: 100%; }
  .fx84-proof-row { grid-template-columns: 1fr; }
  .fx84-action-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .fx84-action-buttons .action-unit,
  .fx84-action-buttons .btn { width: 100%; }
  .fx84-action-buttons .btn { white-space: normal; }
}

@media (max-width: 420px) {
  .fx84-action-buttons { grid-template-columns: 1fr; }
  .fx84-card-head h2 { font-size: 20px; }
  .fx84-head-right { align-items: flex-start; flex-direction: column; }
}

/* Fleetexo v85 - iş detayında borç/alacak mini görünümü */
.fx84-ledger-mini{display:grid;gap:8px;margin-top:8px}
.fx84-ledger-row{padding:10px;border:1px solid rgba(255,255,255,.08);border-radius:12px;background:rgba(255,255,255,.035);line-height:1.45}
.fx84-note .fx84-ledger-mini{margin-top:0}
