@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

body {
  margin: 0;
  color: #eee;
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
  background: radial-gradient(circle, rgba(0,0,30,1) 0%, rgba(0,0,10,1) 100%);
}

.button {
  border: 1px solid rgba(0, 255, 255, 0.7);
  padding: 12px 24px;
  border-radius: 8px;
  color: cyan;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px cyan;
  transition: all 0.3s ease;
}

.button:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px cyan;
  transform: scale(1.05);
}

#info {
  max-width: 200px;
  font-size: 14px;
}

#mainHeading{
  position: relative;
  text-align: center;
  background-color: transparent;
}

#dateTime{
  text-align: end;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#progress-bar-container {
  width: 50%;
  height: 20px;
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
}

#progress-bar {
  height: 100%;
  width: 0%; /* Start empty */
  background: linear-gradient(90deg, cyan, blue); /* Nice gradient */
  transition: width 0.3s ease; /* Smooth filling effect */
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}

#menu {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  color: white;
  font-family: Arial, sans-serif;
  border-radius: 10px;
  z-index: 10;
}
.menu-item {
  margin: 5px 0;
}
.menu-item label {
  display: inline-block;
  width: 150px;
}
.menu-item input {
  width: 150px;
}