/* changes bars from caution tape to a nice cool mint */

.content-warning::before,
.content-warning::after,
.compose-form .spoiler-input__border{
background: #5c8d72;
}

/* removes the "Show anyway" but also removes the "Hide post" for CWd posts */

.content-warning .link-button span {
  display: none;
}

/* adds new content for the link for post visibliity. Must be content to work for both show/hide */

.content-warning .link-button:after {
  content: 'Toggle post visibility';
}

/* changes margins on ungrouped notifications but leaves grouped with indentation */

.notification-ungrouped .status__content,
.notification-ungrouped .status__action-bar {
    margin-inline-start: 0px !important;
    width: 100% !important;
}

/* normal padding for notifications from Mastodon.art */

.notification-ungrouped {
    padding: 16px 16px;
}

.compose-form .autosuggest-textarea__textarea, .compose-form .spoiler-input__input {
font-size: 1rem;
}

