.rd-channel-sync-banner {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(133, 100, 4, 0.08);
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
}
.rd-channel-sync-banner::before {
  content: "⚠️";
  font-size: 18px;
  margin-right: 12px;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
