.UKMHA-touchscreen {
  background-color: #ffffff03;
  display: grid;
  justify-items: center;
  align-items: start;
  width: 100vw;
}

.UKMHA-touchscreen .overlap-group-wrapper {
  background-color: #ffffff03;
  width: 2160px;
  height: 3840px;
}

.UKMHA-touchscreen .overlap-group {
  height: 3840px;
  background-image: url(../img/ukmha-touchscreen-events-1.png);
  background-size: cover;
  background-position: 50% 50%;
}

.UKMHA-touchscreen .group {
  position: relative;
  width: 2160px;
  height: 701px;
  top: 2401px;
}

.UKMHA-touchscreen .back-button {
  position: absolute;
  width: 450px;
  height: 701px;
  top: 0;
  left: 0;
  background-color: #ffffff03;
}

.UKMHA-touchscreen .home-button {
  position: absolute;
  width: 450px;
  height: 701px;
  top: 0;
  left: 1710px;
  background-color: #ffffff03;
}
/* Original CSS code should be injected here */

/* Accessibility and semantic enhancements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Enhanced button interactions */
.UKMHA-touchscreen .back-button,
.UKMHA-touchscreen .home-button {
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  border: none;
  outline: none;
}

.UKMHA-touchscreen .back-button:hover,
.UKMHA-touchscreen .home-button:hover {
  opacity: 0.8;
}

.UKMHA-touchscreen .back-button:active,
.UKMHA-touchscreen .home-button:active {
  opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 2160px) {
  .UKMHA-touchscreen .overlap-group-wrapper {
    width: 100%;
    max-width: 2160px;
  }

  .UKMHA-touchscreen .group {
    width: 100%;
    max-width: 2160px;
  }
}

@media (max-width: 768px) {
  .UKMHA-touchscreen .back-button,
  .UKMHA-touchscreen .home-button {
    width: 25%;
    min-width: 200px;
  }

  .UKMHA-touchscreen .home-button {
    right: 0;
    left: auto;
  }
}
