/* profile */
.profile-header {
  display: grid;
  grid-template-columns: auto 1fr;
}
.profile-header img {
  margin-right: 8px;
  border-radius: 6px;
}
.profile-header h2 {
  margin: 4px 0;
}

.profile-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 6px;
  margin: 6px 0;
}
.profile-info h3 {
  margin: 0;
}

/* link list aside */
.link-list a {
  display: flex;
  align-items: center;
  width: fit-content;
}
.link-list img {
  height: 16px;
  margin-right: 4px;
}

.link-image-list {
  display: flex;
  flex-direction: column;
}
.link-image-list > img, .link-image-list > a {
  margin: auto;
  margin-top: 10px;
  max-width: 200px;
}
.link-image-list > a > img {
  width: 100%;
}

/* calendar widget */
table.penguinspy-dev-calendar-widget {
  margin: 0 auto 6px;
}
table.penguinspy-dev-calendar-widget td.today {
  background-color: green;
}

/* status thingy */
.status-activity {
  grid-template-columns: min-content auto;
  display: grid;
}
.status-activity h2 {
  font-family: var(--font-header);
  margin-bottom: 4px;
  margin-top: 12px;
  font-size: 14px;
  text-transform: uppercase;
  grid-column-end: 3;
  grid-column-start: 1;
}
.status-activity span:not([role="tooltip"]) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.activity-images {
  margin-right: 10px;
  float: left;
  position: relative;
  grid-row-start: 2;
  grid-row-end: 6;
  height: min-content;
}
.activity-images img {
  max-height: 64px;
  border-radius: 8px;
}
.activity-images img.small-img {
  max-height: 24px;
  background-color: pink;
  padding: 2px;
}
.activity-images .tooltip-container.small {
  position: absolute;
  right: -2px;
  bottom: -2px;
}
.activity-images img.small {
  position: absolute;
  right: -2px;
  bottom: 4px;
}

#status-span {
  padding: 2px;
  border-radius: 6px;
}
