/* Customized by Administrators */
.navigation-panel__logo {
  display: none; visibility: hidden;
}

.column-link--transparent.active {
  color: #2181bc;
}

.button:active, .button:focus, .button:hover, .button {
    background-color: #2181bc;
}

/* Central column */
.tabs-bar__wrapper,
.column>.scrollable {
    background: #0b1624;
}


.link-footer p {
  color: #dddddd;
}

.link-footer p a {
  color: #2181bc;
}

body {
  background: #0b1624;
}

.account__avatar {
    border-radius: 25%;
}
.account__header__tabs .account__avatar {
    border-radius: 4px;
}

/* Button icons */
.icon-button.active {
    color: #2181bc;
}


/*
    * Shrink the font size a smidge for post content
    * Indent the paragraph text
    * Stop posts from getting too tall by capping content 
      height, and adding scrollbar if exceeded
        - 350px seems to be the sweet spot - maybe 90% of 
          posts don't hit the height cap
    * This alignment intentionally does not apply to
      expanded posts.
*/
.status .reply-indicator__content, .status .status__content {
    margin-left: calc(58px - 0.5em);
    font-size: 1.075em;
    padding: 0 0.5em;
    max-height: 350px;
    overflow-y: auto;
}

/*
    * Narrow the media icon on status cards, so that the
      card title aligns with post content
*/
.status-card.compact .status-card__image {
    flex: 0 0 calc(58px - 0.75em);
}

/*
    * Brighten the post privacy indicator a tad if public but
      not listed in public timelines
    * Set a bright color for privacy indicator if locked to
      followers or specific recipients
*/
.status__visibility-icon .fa-lock, 
.status__visibility-icon .fa-at {
    color: #ff6baf;
}
.status__visibility-icon .fa-unlock {
    color: #838fb5;
}


