.sync-panel {
  box-shadow: none;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, auto);
  gap: 12px;
  align-items: center;
}

.sync-panel h3 {
  margin: 4px 0 6px;
  font-size: 20px;
}

.sync-form,
.sync-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sync-form input {
  width: 180px;
}

@media (max-width: 900px) {
  .sync-panel {
    grid-template-columns: 1fr;
  }

  .sync-form,
  .sync-actions {
    justify-content: flex-start;
  }

  .sync-form input {
    width: min(100%, 280px);
  }
}
