.header-profile h1 {
    color: #fff;
}
/* Цвет заголовка "Продажи" */
.user-stat-title {
  color: #fff !important;
}

/* Цвет цифры (например, "1") */
.user-stat-number {
  color: #fff !important;
}
/* Цвет текста "(1 отзыв)" */
.text-muted.small {
  color: #fff !important;
}


/* Анимация для ✨ */
@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(4px); }
}
/* Заголовок "Приглашайте друзей..." */
.dashboard-body h4.mb-3.text-muted {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  text-align: right !important;
  position: relative;
}

.dashboard-body h4.mb-3.text-muted::after {
  content: "✨";
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  font-size: 20px;
  animation: float 3s ease-in-out infinite;
}

/* Основной текст */
.dashboard-body p.mb-3.text-muted {
  color: #334155 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  text-align: right !important;
  max-width: 680px;
  margin: 0 auto;
  padding-right: 0 !important;
}

/* Блок со ссылкой (input + кнопка) */
.dashboard-body .col-lg-6.mb-3 {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.dashboard-body .col-lg-6.mb-3 input[type="text"] {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-size: 15px !important;
  color: #1e293b !important;
  width: 320px;
  transition: all 0.3s ease;
}

.dashboard-body .col-lg-6.mb-3 input[type="text"]:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
  outline: none;
}

.dashboard-body .col-lg-6.mb-3 button.btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
  border: none !important;
  border-radius: 8px !important;
  color: white !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}

.dashboard-body .col-lg-6.mb-3 button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}