/* Slide-out panel */
.header-user-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  font-family: "Segoe UI", sans-serif;
}

.header-user-panel.active {
  right: 0;
}

/* User Info */
.header-user-info {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.header-user-avatar-large {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
}
.header-user-details h3 {
  margin: 0;
  font-size: 16px;
}
.header-user-details p {
  margin: 0;
  font-size: 13px;
  color: #0073e6;
}

/* Boost Card */
.header-user-card {
  margin: 10px 15px;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.header-user-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.header-user-card img {
  width: 20px;
  margin-right: 10px;
}
.header-user-card .arrow {
  font-size: 18px;
  color: #999;
}

/* Links */
.header-user-links {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  border-top: 1px solid #eee;
}
.header-user-links li {
  padding: 12px 20px;
  display: flex;
  align-items: center;
}
.header-user-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  flex: 1;
  display: flex;
  align-items: center;
}
.header-user-links a .icon {
  margin-right: 10px;
}
.header-user-links .lang-select {
  margin-left: auto;
  font-size: 14px;
  padding: 2px 5px;
}
.header-user-links a.logout {
  color: red;
  font-weight: bold;
}
