
header .navbar
{
    background-color: var(--panel-bg); /* Override  */
}

.post p
{
    margin-bottom: 1.1rem;
}

.postlink a,
.content a
{
    text-decoration: underline;
}
.postlink a:hover,
.content a:hover
{
    color: #0D4473;
}

.text-shadow
{
    text-shadow: 2px 2px 0 #333, -2px -2px 0 #333;
}

/*
    Profile Ranks
*/
.profile-rank
{
    position: relative;
    display: inline-block;
    color: #FFFFFF;
    background-color: rgb(var(--color-primary));
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;

    /* Animate shine sweep */
    overflow: hidden;
}

/* Rank: Administrator */
.profile-rank-administrator
{
    color: #FFFFFF; /* Base text color */
    background-color: #8C1C38;
}

.profile-rank-administrator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 200%;
    background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 35%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.2) 65%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: shine-sweep 5s infinite ease-in-out;
    transform: skewX(-20deg);
    pointer-events: none;
}

@keyframes shine-sweep {
    0%   { left: -200%; }
    100% { left: 100%; }
}