/* -------------------------------------------------- */
/*  Status Block Styling (fixed top-right, premium UI) */
/* -------------------------------------------------- */
#user-status {
  position: fixed;
  top: 20px;
  right: 20px;

  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;

  font-size: 14px;
  line-height: 1.3;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  z-index: 9999;
  backdrop-filter: blur(6px);
}

/* -------------------------------------------------- */
/*  Resource Line - Heart + Pin */
/* -------------------------------------------------- */
#user-daily-resource {
  display: flex;
  gap: 12px;
  font-size: 12px;
  opacity: 0.8;
}

#user-all-resource {
  display: flex;
  gap: 12px;
  font-size: 12px;
  opacity: 0.5;
}

.resource-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(64px, auto)) auto;
  align-items: center;
  gap: 6px 10px;
  margin-top: 4px;
}

.resource-row .item {
  display: inline-flex;
  align-items: center;
  min-width: 40px;   /* QUAN TRỌNG: giữ cột không nhảy */
}

.resource-row .label {
  font-size: 11px;
  opacity: 0.6;
  min-width: 36px;
  white-space: nowrap;
}

/* -------------------------------------------------- */
/* log-user
/* -------------------------------------------------- */
.log-user b {
  font-weight: 600;
}

.log-user b .hash {
  font-weight: 400;
  opacity: 0.7;
}
