.header-left,
.header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.logo {
  padding-left: 20px;
  cursor: pointer;
}

.icon-button {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.project-title {
  padding-left: 6px;
  font-size: 28px;
  font-weight: 600;
}

.action-bar ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.nav-link {
  padding: 10px;
  display: flex;
  gap: 4px;
  align-items: center;
}

a {
  text-decoration: none;
  color: var(--link-color);
  font-weight: 500;
}

.create-button {
  font-size: 15px;
  font-weight: 500;
  padding: 9px 12px;
  border: none;
  background-color: var(--button-primary-bg);
  color: var(--button-text-color);
  cursor: pointer;
  border-radius: 3px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-input {
  padding: 5px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding-left: 30px; /* Add padding to the left for the search icon */
}

.search-icon {
  position: relative;
  left: 27px; /* Adjust the position of the search icon */
  width: 15px;
  height: 15px;
}

.icons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}