.splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #feffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.splash-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}



/* Responsive design */
@media (max-width: 768px) {

  
  .splash-logo {
    width: 120px;
  }
}


/* Disable all touch interactions including zoom for a specific element */
.splash-logo {
  touch-action: none;
}

/* Allow vertical scrolling but prevent zoom for a specific element */
.splash-logo {
  touch-action: pan-y;
}

.splash-logo {
  -webkit-user-select: none; /* Disables text selection */
  -webkit-touch-callout: none; /* Prevents the context menu on long press */
}

.splash-logo {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Standard syntax */
}