/* General Styles */
body {
  font-family: sans-serif;
  margin: 0;
  background-color: #eef1f5; /* Lighter gray from screenshot */
  color: #333;
}

/* Header */
header {
  background-color: #d6e6f2; /* Light blue from screenshot */
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  border-bottom: 1px solid #c9d7e3;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left img {
  height: 40px;
  margin-right: 15px;
}

.header-left span {
  font-weight: bold;
  font-size: 1.1em;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
  position: relative;
}

header nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-right span {
  font-weight: bold;
}

.dropdown-content {
    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;
    list-style: none;
    padding: 0;
    margin: 0;

}

.dropdown-content li a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content li a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  background-color: #343a40;
  color: #ffffff;
}
