/* Define how each icon button should look like */
.buttonnotification {
  display: inline-block !important; /* Inline elements with width and height. TL;DR they make the icon buttons stack from left-to-right instead of top-to-bottom */
  position: relative !important; /* All 'absolute'ly positioned elements are relative to this one */
  padding: 2px 5px !important; /* Add some padding so it looks nice */
}

/* Make the badge float in the top right corner of the button */
.button__badge {
    background-color: #fa3e3e !important;
    border-radius: 17px !important;
    color: white !important;
    font-size: 10px !important;
    left: 2px !important;
    padding: 6px 8px 5px 8px !important;
    position: absolute !important;
    top: -11px !important;
}