.mac-notification-bar {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: 0.3s ease-in-out;
    margin-top: calc(var(--mac-notification-bar-height) * -1);
}

.mac-notification-bar.is-active {
    display: block;
    margin-top: 0;
}

.mac-notification-bar-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.mac-notification-bar-content p {
    margin: 0;
}

.mac-notification-bar-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    font-size: 20px;
    font-weight: 900;
    color: #000;
}

.mac-notification-bar-close:hover {
    color: #ce112d;
} 