/* =============================================
   SAHA KONTROL SAYFASI — field.css
   ============================================= */

.field-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.field-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.field-stat small { font-weight: 400; color: var(--text-secondary); font-size: 12px; }
.field-stat i { font-size: 14px; }
.field-stat.green, .field-stat.green i { color: var(--green); }
.field-stat.red, .field-stat.red i { color: var(--red); }
.field-stat.yellow, .field-stat.yellow i { color: var(--yellow); }
.field-stat.blue, .field-stat.blue i { color: var(--blue); }
.field-stat.muted { color: var(--text-secondary); }
.field-stat.muted i { color: var(--text-muted); }
.field-stat.dark, .field-stat.dark i { color: var(--text); }

.field-maps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field-map-card .map-box {
  width: 100%;
  height: 500px;
  background: #e5e7eb;
  border-radius: 0 0 var(--radius) var(--radius);
}

.field-actions-card .action-list-scroll {
  max-height: 500px;
  overflow-y: auto;
}

.field-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.field-filter-bar .form-select {
  width: auto;
  min-width: 140px;
  max-width: 200px;
}

@media (max-width: 900px) {
  .field-maps-row { grid-template-columns: 1fr; }
  .field-map-card .map-box { height: 350px; }
}
