body {
  background-color: #0d1b2a;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.vizon-menu {
  text-align: center;
}

.title {
  font-size: 3em;
  color: #61dafb; /* Light blue accent */
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2em;
  color: #a0c4ff;
  margin-bottom: 30px;
}

.feedback-buttons {
  margin: 20px 0;
}

.feedback-buttons button {
  font-size: 1.5em;
  margin: 0 10px;
}

input[type="text"] {
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  background-color: #1b263b;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #415a77;
}
.menu-links {
  list-style-type: none;
  padding: 0;
}

.menu-links li {
  margin: 30px 0;
}

.menu-links a {
  text-decoration: none;
  font-size: 1.5em;
  color: #ffffff;
  background-color: #1b263b;
  padding: 10px 25px;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.menu-links a:hover {
  background-color: #415a77;
}
.vizon-home-link {
  position: fixed;
  top: 20px;
  right: 30px;
  text-decoration: none;
  font-size: 1.2em;
  color: #61dafb;
  font-weight: bold;
  background-color: transparent;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s;
  z-index: 1000;
}

.vizon-home-link:hover {
  background-color: #1b263b;
}
