*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
}

#countdown {
  text-align: left;
  
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;

}

.info-body-titel {
  /* font-weight: bold;
  color: #dc0000;
  text-align: center; */
}

.info {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid #ddd;
  border-radius: 10px;
  z-index: 10;
  background-color: #fff;
  width: 400px;
  height: 145px;
  max-width: 90%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px; /* Increased height for a more prominent glow */
  background: linear-gradient(90deg, rgba(68, 255, 0, 0), rgba(68, 255, 0, 0.8), rgba(68, 255, 0, 0));
  animation: neonGlow 4s linear infinite;
}

@keyframes neonGlow {
  0% {
    transform: translateX(-100%);
    box-shadow: 0 0 20px rgba(68, 255, 0, 0.8);
  }
  100% {
    transform: translateX(100%);
    box-shadow: 0 0 20px rgba(68, 255, 0, 0.8);
  }
}

.info.active {
  transform: translate(-50%, -50%) scale(1);
}

.info-header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background-color: #f8f8f8;
  border-radius: 10px 10px 0 0;
}

.info-header .title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.info-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
  color: #555;
}

.info-body {
  padding: 15px;
  color: #666;
  height: 100%;
  text-align: left;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}
