body {
  background-color: #0368ff;
  font-family: "Roboto Slab", serif !important;
}

.Landing {
  width: 100%;
  height: 81%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

table {
  width: auto;
  margin: auto;
  margin-top: 100px;
}
td {
  margin-left: 10px;
  margin-top: 5px;
  vertical-align: middle; /* Ensure table cells align to middle */
}
tr {
  margin-top: 10px;
  margin-left: 200px;
}

.navbar {
  background-color: #031f3b; /* Restore blue background */
  height: auto; /* Navbar height */
  display: flex;
  justify-content: space-between; /* Align items to the left and right */
  align-items: center; /* Vertically center items */
  padding-left: 20px;
}

.navbar table {
  height: 100%; /* Ensure table takes full navbar height */
}

.navbar a, .dropdown .dropbtn {
  font-size: 35px; /* Restored font size */
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  background-color: inherit;
  border: none; /* Remove box around Buy Now and Services */
  outline: none; /* Remove default button outline */
  display: flex;
  align-items: center; /* Vertically center the text inside the links */
}

.dropdown-content, .dropdown-content-hamburger {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a, .dropdown-content-hamburger a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropdown-content a:hover {
  background-color: red;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: block;
  font-size: 30px;
  cursor: pointer;
  color: white;
  margin-right: 10px; /* Move hamburger icon more to the left */
  position: relative;
  display: flex; /* Align hamburger icon */
  align-items: center; /* Vertically center the icon */
}

.dropdown-content-hamburger {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  top: 60px; /* Position directly below the hamburger button */
  right: 0; /* Align menu to the right edge of the button */
  left: auto; /* Avoid overflowing to the right */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  max-width: calc(100vw - 20px); /* Ensure it doesn't overflow viewport */
}

.dropdown-content-hamburger a {
  padding: 12px 16px;
  color: black;
  text-decoration: none;
  display: block;
}

.dropdown-content-hamburger a:hover {
  background-color: #ddd;
}
