/* Для всех устройств по умолчанию */
.sticky-header {
  position: sticky !important;
  top: 0 !important;
  background-color: #222222 !important;  /* Черный фон по умолчанию */
  color: white !important;
  z-index: 100 !important;
  padding: 10px !important;
}

/* Для мобильных устройств */
@media screen and (max-width: 768px) {
  .sticky-header {
    background-color: #222222 !important;  /* Здесь ставь нужный фон для мобильных устройств */
    color: black !important;  /* Цвет текста на мобильных */
  }
}
