.sync-info-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid #dce3ff;
  border-radius: 11px;
  background: #f5f7ff;
}

.sync-info-banner > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #fff;
  background: #5965df;
  font-size: 10px;
  font-weight: 850;
}

.sync-info-banner > div { flex: 1; }
.sync-info-banner strong { display: block; font-size: 10px; }
.sync-info-banner p { margin: 3px 0 0; color: #747e94; font-size: 9px; }

.cabinet-card .cabinet-sync-state {
  display: grid;
  justify-content: stretch;
  gap: 3px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 9px;
  color: #667085;
  background: #f6f7fa;
}

.cabinet-card .cabinet-sync-state strong { font-size: 9px; }
.cabinet-card .cabinet-sync-state span {
  overflow: hidden;
  font-size: 8px;
  line-height: 1.4;
  text-overflow: ellipsis;
}
.cabinet-card .cabinet-sync-state.succeeded { color: #167552; background: #edf9f4; }
.cabinet-card .cabinet-sync-state.queued,
.cabinet-card .cabinet-sync-state.running,
.cabinet-card .cabinet-sync-state.waiting_external { color: #85600e; background: #fff7e8; }
.cabinet-card .cabinet-sync-state.failed { color: #a8424d; background: #fff3f4; }
.cabinet-card .cabinet-actions .sync-button {
  color: #fff;
  background: linear-gradient(135deg, #655de8, #3865e7);
  border-color: transparent;
}
