html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
/* Hide Traccar logo */
.logo,
.header-logo,
img[src*="traccar"] {
  display: none !important;
}

/* Add Himaya logo */
body::after {
  content: "";
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background-image: url("/logo.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2147483647; /* أعلى z-index ممكن */
  pointer-events: none;
}

