/* ==================== */
/* HEADER STYLES */
/* ==================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  height: 70px;
}

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

.header a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px;
}

.header a:hover {
  color: var(--primary-color);
}

body.dark .header a {
  color: var(--dark-text-secondary);
}

body.dark .header a:hover {
  color: var(--primary-color);
}

.header-apps-icon {
  width: 24px;
  height: 24px;
  margin-left: 15px;
  cursor: pointer;
  fill: var(--text-secondary);
}

.header-apps-icon:hover {
  transform: scale(1.1);
}

.profile-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.profile-icon:hover {
  transform: scale(1.05);
}