.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2D3142;
  padding: 10px 20px;
  color: white;
  position: relative;
}

.header-logo {
  font-size: 24px;
  color: white;
  text-decoration: none;
}
.header-logo:hover{
  transition: .3s ease;
	color: #F87060;
}
.header-search {
  flex: 1;
  margin: 0 20px;
}

.header-search input {
  width: 100%;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap:5px;
}

.header-buttons > div {
  position: relative;
}

.header-buttons button {
  padding-top:2px;
  padding-left:7px;
  font-size: 16px;
  height:32px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  color: white;
}

.header-login-button button {
  background-color: #EF8354;
}

.header-register-button button {
  background-color: #4F5D75;
}

.header-cart-button button {
  background-color: #EF8354;
  height:32px;
  width:32px;
}

.header-notification-button button {
  background-color: #EF8354;
  height:32px;
  width:32px;
}

.header-account-button {
  background-color: #EF8354;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 16px;
  height:32px;
  width:32px;
}

.header-account-button .fa-user-circle {
  font-size: 20px;
  color: white;
}

.header-buttons button:hover {
  opacity: 0.9;
}

.account-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background-color: #EF8354;
  color: white;
  border-radius: 16px;
  display: none;
  z-index: 1000;
  min-width: 150px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding:5px;
}
.account-dropdown a {
  height:32px;
  text-decoration: none;
  color: white;
  display: block;
  border-radius: 16px;
  line-height:32px;
  padding-left:5px;
  box-sizing: border-box;
}
.account-dropdown a:last-child {
  border-bottom: none;
}
.account-dropdown a:hover {
  transition: .3s ease;
  background-color: #4F5D75;
}


.notification-dropdown{
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #EF8354;
    color: white;
    border-radius: 16px;
    display: none;
    z-index: 1000;
    min-width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding:5px;
}
.notification-item a {
  height:32px;
  text-decoration: none;
  color: white;
  display: block;
  padding-left:5px;
  line-height: 32px;
  border-radius:16px;
  box-sizing: border-box;
  margin-bottom:5px;
}
.notification-item a:hover {
  transition: .3s ease;
  background-color: #4F5D75;
}
.notification-item.unseen a {
    font-weight: bold;
}
.notification-dot {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 10px;
  height: 10px;
  background: green;
  border-radius: 50%;
}

.header-browse-jobs-button{
  background-color: #EF8354;
  color:white;
  text-decoration: none;
  height:32px;
  width:128px;  
  border-radius: 16px;
  display: flex;
  line-height: 32px;
  justify-content: center;
}

.header-post-job-button{
  background-color: #4F5D75;
  color:white;
  text-decoration: none;
  height:32px;
  width:128px;  
  border-radius: 16px;
  display: flex;
  line-height: 32px;
  justify-content: center;
}



.toggle-buttons {
  margin-bottom: 20px;
}
.toggle-buttons button {
  height:32px;
  margin: 0 5px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  background-color: #F87060;
  color: white;
  font-size: 16px;
}
.toggle-buttons button.active {
  background-color: #B3A394;
}
.form-container {
  width: auto;
  margin:5px;
}
.form-container.hidden {
  display: none;
}




.header-search {
  position: relative;
  display: inline-block;
}

.header-search input {
  outline: none;
  transition: all 0.2s ease;
  background-color:#4F5D75;
  color:white;
}
.header-search input::placeholder {
  color: white;
}

.header-search .search-icon,
.header-search .clear-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  cursor: pointer;
  color:white;
}

.header-search .search-icon {
  right: 8px;
}

.header-search .clear-icon {
  right: 8px;
  display: none;
}

.header-search input:not(:placeholder-shown) + .clear-icon {
  display: block;
}