/* Vetëm mobile */
@media (max-width: 768px) {
  .mobile-only {
    display: block;          /* Siguro që shfaqet në mobile */
    text-align: right;       /* Vendos ikonën / search djathtas */
  }
}

/* Desktop & tablet fshihet */
@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}