.user-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: #1B1C1D;
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
  color: white;
  position: relative;
}

.user-info {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 6px;
  padding: 4px;
  position: relative;
}

.user-info:hover {
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.05);
}

.avatar-image {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name-container {
  display: flex;
  flex-direction: column;
}

#user-name {
  font-weight: bold;
  font-size: 16px;
  color: white;
}

.user-email {
  font-size: 13px;
  color: #ccc;
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: calc(100% + 4px); /* pod uživatelem */
  right: 0;
  background-color: #fff;
  min-width: 160px;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 100;
  padding: 8px 0;
}

.dropdown-content button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.dropdown-content button:hover {
  background-color: #f0f0f0;
}

/* Plugin verze */
.plugin-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plugin-version {
  font-size: 12px;
  opacity: 0.6;
  color: white;
}
