/* General Styles */
body {
  background-color: white;
  color: black;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Logo Styles */
#logo {
  display: block;
  margin: 5px auto;
  max-width: 200px;
}

/* Menu Styles */
#menu {
  margin: 1px auto;
  text-align: center;
}

#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

#menu li {
  display: inline-block;
}

#menu a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s;
}

#menu a:hover {
  color: #e74c3c;
}

/* Grid Styles */
#grid-container {
  display: grid;
  grid-template-columns: repeat(10, auto);
  gap: 5px;
  justify-content: center;
  padding: 10px;
}

.dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3498db;
}

/* Pop-Up Modal */
.menu-popup {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
}

.menu-popup-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #ccc;
  width: 60%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-popup-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.menu-popup-close:hover,
.menu-popup-close:focus {
  color: red;
}
/* Add dots between menu items */
#menu li {
  display: inline-block;
  position: relative;
  margin:   1px; /* Spacing between items */
}

#menu li::after {
  content: "●"; /* Add a dot */
  color: #0054A5; /* Set the color of the dot */
  position: absolute;
  right: -11px; /* Position the dot */
  font-size: 15px; /* Adjust the size of the dot */
}

#menu li:last-child::after {
  content: ""; /* Remove the dot after the last item */
}
