/* Target the main "Post" button in Mastodon compose form */

/* Replace button label text */
.compose-form__publish-button::after {
    content: "Squeak!" !important; /* New label */
    display: block;
    text-align: center;
}

/* Hide the original text */
.compose-form__publish-button span {
    display: none !important;
}

