/* General header bar */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff !important; /* force white */
  border-bottom: 4px solid #006400;
  padding: 8px 15px;
}

/* Left side: avatar, username, support credits */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-left .avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.header-left .username {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.header-left .credit-icon {
  height: 22px;
  width: auto;
  margin-left: 10px;
}

.header-left span {
  font-size: 14px;
  color: #333;
}

/* Right side: sponsor credits + auth links */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-right span {
  font-size: 14px;
  color: #333;
}

.header-right a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.header-right a:hover {
  color: #0073e6;
}
