body {
  font-size: 14px !important; /* Default font size for smaller screens */
}

@media (width >= 48rem) {
  body {
    font-size: 16px !important; 
  }
}

.seat:hover .seat-tooltip {
  visibility: hidden;
  opacity: 0;
}

@media (min-width: 96rem) {
  .seat:hover .seat-tooltip {
    visibility: visible;
    opacity: 1;
  }
}

.seat-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f1f1f1;
  color: #000000;
  padding: 8px 6px;
  font-size: 10px;
  transition: opacity 0.2s;
  z-index: 1000;
  pointer-events: none;
  margin-top: 4px;
  width: max-content;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 6px 20px 0 rgba(0, 0, 0, 0.06);
}

.seat-tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #f1f1f1;
  background: transparent;
}

.responsive-container {
  margin-top: 4rem;
  position: relative;
  overflow-x: auto;
  overflow-y: auto;
  min-width: 0px;
  min-height: 300px;
  width: 100%;
  height: 100%;
  -moz-transform: scale(1);
  color: transparent;
  font-weight: 600;
}

@media (min-width: 96rem) {
  .responsive-container {
    margin-top: 6rem;
    position: relative;
    overflow-x: auto;
    overflow-y: auto;
    min-width: 0px;
    min-height: 320px;
    width: 100%;
    height: 100%;
    -moz-transform: scale(1);
    color: transparent;
    font-weight: 600;
  }
}

#zoom-img {
  touch-action: none;
  transform-origin: center center;
  transition: transform 0.1s ease;
  zoom: 1.5;
}

.hover-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}

.hover-text.visible {
  opacity: 1;
  max-width: 200px;
  width: auto;
}

.seat.selected {
  border: 1.6px solid rgb(100, 100, 100);
  border-radius: 9999px;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #696969;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

input[type="radio"]:checked {
  background-color: #bc4749;
  border-color: #bc4749;
}

input[type="radio"]:hover {
  border-color: #bc4749;
}

input[type="radio"]:focus {
  box-shadow: 0 0 0 1px rgba(8, 7, 22, 0.4);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5), 0 0 0 0 rgba(46, 204, 113, 0.3);
  }
  40% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0),
      0 0 0 0 rgba(46, 204, 113, 0.3);
  }
  80% {
    box-shadow: 0 0 0 20px rgba(46, 204, 113, 0),
      0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 230, 126, 0), 0 0 0 90px rgba(46, 204, 113, 0);
  }
}

.live-pulse {
  display: inline-block;
  animation: pulse-ring 1.5s infinite;
}
