.habblet-text {
  margin-left: 10px;
  margin-right: 10px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.staff-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-bottom: 20px;
}

.staff-card-horizontal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 400px;
    max-width: 100%;
    border-radius: 2px;
    padding: 10px;
    box-sizing: border-box;
}

.staff-card-horizontal:hover {
    transform: none !important;
    box-shadow: none !important;
}

.staff-avatar {
    width: 64px;
    height: 110px;
    margin-right: 10px;
    display: block;
}

.staff-info-horizontal {
    font-size: 11px;
    line-height: 1.2em;
    text-align: left;
    width: 100%;
}

.staff-name {
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.staff-name a {
    text-decoration: none;
    color: #ff6a00;
}

.staff-name a:hover {
    text-decoration: none;
    color: #ff8c2a;
}

.staff-status {
    width: 50px;
    height: 16px;
}

.staff-motto,
.staff-created,
.staff-lastonline {
    display: block;
    margin-top: 2px;
    line-height: 1.1em;
}

.staff-rank {
    color: #ff0400;
    font-weight: bold;
}

.staff-created {
    font-size: 10px;
    color: #777;
}

.staff-name a.online {
    color: #2aff2a;
    text-shadow:
        0 0 2px #2aff2a,
        0 0 4px #2aff2a,
        0 0 6px rgba(42, 255, 42, 0.6);
}

.staff-rank,
.staff-motto,
.staff-lastonline {
    margin-top: 2px;
    line-height: 1.1em;
}

.staff-rank,
.staff-motto,
.staff-lastonline {
    display: flex;
    align-items: center;
    gap: 6px;
}

.staff-rank::before,
.staff-motto::before,
.staff-lastonline::before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
}

.staff-rank::before {
    width: 14px;
    height: 18px;
    background-image: url("../images/icons/rank.gif");
}

.staff-motto::before {
    width: 15px;
    height: 14px;
    background-image: url("../images/icons/motto.png");
}

.staff-lastonline::before {
    width: 19px;
    height: 16px;
    background-image: url("../images/icons/time.gif");
}

.staff-empty .staff-info-horizontal {
    width: 100%;
}

.staff-empty .staff-name {
    display: block;
}

.staff-empty-text {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.1em;
    color: #666;
}