* {
  font-family: "Ligconsolata", sans-serif;
  font-weight: bold; /* 'sans-serif' como fallback se a Ligconsolata não funfar */
}

/*----------------------HEADER--------------------*/

header {
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  position: fixed;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left-side {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
}

.header-right-side {
  width: 17%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-button {
  width: 60px;
  height: 60px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 50%;
}

.search-bar {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar .search-icon {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0.6;
}

.search-bar input {
  color: #735cbd;
  font-size: large;
  width: 100%;
  height: 35px;
  background-color: #ebebeb;
  border-radius: 20px;
  border: none;
  padding-left: 40px;
}

.search-bar input::placeholder {
  color: #494949;
}

.search-bar input:focus {
  outline: none;
}

#notification-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

#notification-button span {
  font-size: 20px;
  color: #222222;
}

#profile-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

#profile-button span {
  font-size: 20px;
  color: #222222;
}

#config-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

#config-button span {
  font-size: 20px;
  color: #222222;
}

#help-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

#help-button span {
  font-size: 20px;
  color: #222222;
}

#dark-mode-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

#dark-mode-button span {
  font-size: 20px;
  color: #222222;
}

.def-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

.def-btn:hover {
  background-color: #e0e0e0;
}

.new-project-button {
  width: 40px;
  height: 40px;
  background-color: #7127d8;
  border-radius: 50%;
  border: none;
  margin-right: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease; /* Transição suave para a transformação */
}

.new-project-button:hover {
  background-color: #7127d8;
  transform: rotate(180deg);
}

.new-project-button span {
  font-size: 25px;
  color: #fff;
}

/*--------------MENUS DROPDOWN--------------*/

.dropdown-menu {
  position: fixed;
  top: 50px;
  padding: 10px 0px;
  margin-top: 5px;
  border-radius: 10px;
  z-index: 1100;
  display: none;
  width: 150px;
  height: fit-content;
  background-color: #f5f5f5;
  text-align: left;
  box-shadow: 2px 2px 7px -5px #222222;
}

.dropdown-menu ul {
  list-style: none;
  width: fit-content;
  display: flex;
  padding: 0;
  margin-left: 10px;
  flex-direction: column;
  gap: 7px;
}

.dropdown-menu a {
  text-decoration: none;
  color: #323232;
}

#profile-dropdown-menu {
  right: 50px;
}

#profile-dropdown-menu ul li #user-name {
  color: #323232;
}

#notification-dropdown-menu {
  right: 100px;
}

@import url("../css/dark-mode.css");
