/* Header icons styling - shared across all pages */
.header__icons {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
}
.header__icons #welcomeUser {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  padding: 3px 8px;
  border-right: 1px solid #eee;
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header__icons #logoutItem a {
  color: #FD091F;
  padding: 3px 8px;
  border-right: 1px solid #eee;
  font-weight: 600;
  font-size: 13px;
}
.header__icons #loginItem a {
  padding: 3px 8px;
  border-right: 1px solid #eee;
  font-weight: 600;
  font-size: 13px;
}
.header__icons ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__icons ul li {
  display: inline-flex;
  align-items: center;
}
.header__icons .side-toggle {
  padding: 3px 8px;
  color: #FD091F;
  font-size: 16px;
}