body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}
.form-container {
    max-width: 500px;
    background-color: #fff;
    margin: 60px auto;
    padding: 30px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 8px;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
}
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}
button:hover {
    background-color: #218838;
}

/* Navbar Styles Fix */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  color: black;
  padding: 10px 20px;
  position: relative;
  z-index: 100;
}

.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.navbar .logo img {
  height: 60px;
  margin-right: 10px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  margin-left: auto;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: black;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.nav-links li:hover > ul {
  display: block;
}

.nav-links ul {
  display: none;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
  z-index: 999;
}

.nav-links ul li {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: black;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }
}
