/* General styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif; /* Choose a suitable font-family */
}


.header-container {
  display: flex;
  justify-content: flex-start; /* Align the header navigation to the left */
  align-items: center;
  background-color: transparent;
  padding: 5px;
  

}

/* Main navigation */
.header-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.header-nav li {
  margin-left: px; /* Increase the margin for better spacing between menu items */
}

.header-nav li:first-child {
  margin-left: 0; /* Remove margin from the first menu item */
}

.header-nav a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  border: 2px solid purple;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
}

.header-nav a:hover {
  background-color: purple;
  color: #fff;
}

/* Dropdown styles */
.header-nav .has-dropdown {
  position: relative;
}

.header-nav .has-dropdown a {
  border: 1px solid purple; /* Change the color for the dropdown link */
}

.header-nav .header-submenu {
  position: absolute;
  top: 100%;
  left: -100;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
  border: 2px solid purple; /* Add a border to the dropdown submenu */
  border-radius: 5px;
  display: none;
  width: 175px; /* Set the width for the submenu */
  z-index: 1; /* Ensure the dropdown appears above other elements */
}

.header-nav .has-dropdown:hover .header-submenu {
  display: block;
}

.header-nav .header-submenu li {
  margin: 0;
}

.header-nav .header-submenu li a {
  color: #000;
  padding: 10px 20px;
  display: block;
  border: none;
}


body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #333;

  color: white;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 10px;
}


}

li {
  margin-right: 20px;
}

li:last-child {
  margin-right: 0;
}

a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}
 .l-f-o__create-link {
    color: purple;
  }




