/* ==========================================================================
   Notification Bar
   ========================================================================== */

.notification-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    color: var(--color-white);
    height: 43px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.notification-bar:hover {
    background-color: #1a1a1a;
    color: var(--color-white);
}

.notification-bar p {
    font-size: 16px;
    font-weight: var(--font-medium);
    margin: 0;
    line-height: normal;
    color: inherit;
}
