/*非公開色分け*/
/*クラス名：Mastodon＝theme-default、Mastodon（ライト）＝theme-mastodon-light、ハイコントラスト＝theme-contrast*/

body.theme-mastodon-light .status-private {
    background: #debecc !important ;
}
body.theme-mastodon-light .status .fa-lock::before {
 color: #000000 !important ;
}

/*未収載色分け*/
body.theme-mastodon-light .status-unlisted {
    background: #dbebc4 !important ;
}

/* カスタム絵文字を拡大 */
p > .emojione[alt^=":"] {
  width: 3.5em; height: 3.5em; margin: 0;
}


/* 横長カスタム絵文字を拡大 */
.detailed-status .status__content p .emojione,
p .emojione,
.notification__message .emojione {
    width: auto !important;
    height: 2em !important;
}

/* 画像サムネイルを領域に合わせて縮小 */
.media-gallery {
  max-height: 552px;
}
.media-gallery__item-thumbnail img {
    object-fit: contain;
    -o-object-fit: contain;
}

