/* Add custom CSS styles below */ 
/* استهداف عنصر الماركي */
.marquee.enable-animation .marquee__content {
  animation-duration: 120s !important; /* اجعل الرقم أكبر لتبطئ أكثر */
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

/* تنسيق حاوية التصنيفات */
.category-filter {
  margin: 20px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 10px;
  font-family: "Cairo", sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* تنسيق العناوين */
.category-filter label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

/* تنسيق القوائم المنسدلة */
.category-filter select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

/* تأثير عند التفاعل */
.category-filter select:focus {
  border-color: #007bff;
  outline: none;
}

/* إخفاء التصنيف الفرعي عند عدم التحديد */
#sub-category {
  display: none;
  margin-top: 15px;
}