/* Sprint 35 - Gerçek platform listing senkronu */
.sync-real-panel {
  margin: 0 0 14px;
}
.sync-real-panel article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(234, 88, 12, .16);
  background: linear-gradient(135deg, rgba(255, 247, 237, .95), rgba(255, 255, 255, .96));
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}
.sync-real-panel strong {
  display: block;
  font-size: 13px;
  color: #111827;
  letter-spacing: -.01em;
}
.sync-real-panel span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.35;
}
.inline-action-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.danger-soft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, .18);
  background: rgba(254, 242, 242, .92);
  color: #b91c1c;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.danger-soft-btn:hover {
  background: #fee2e2;
}
@media (max-width: 900px) {
  .sync-real-panel article,
  .head-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .inline-action-form,
  .inline-action-form button,
  .head-actions a {
    width: 100%;
  }
}
