/* Add custom CSS style/* شريط واتساب متحرك */
#custom-welcome-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #6b4a37;
  color: white;
  z-index: 9999;
  text-decoration: none;
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

#custom-welcome-moving {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#custom-welcome-content {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  min-width: 100%;
  animation: scrollLoop 24s linear infinite;
}

#custom-welcome-bar svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-inline-end: 0.5rem;
}

@keyframes scrollLoop {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* عند تمرير الماوس يتوقف */
#custom-welcome-moving:hover #custom-welcome-content {
  animation-play-state: paused;
}

/* تمنع تغطية الشريط لأول محتوى */
body {
  padding-top: 48px;
}

s below */