/* Force notibar to behave: pinned to top, visible X, brand-styled. */

.njt-nofi-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99500 !important;
}
body { padding-top: 44px; }

.njt-nofi-notification-bar {
    min-height: 44px;
    display: flex !important;
    align-items: center;
    padding: 6px 56px 6px 16px !important;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.njt-nofi-notification-bar .njt-nofi-text { line-height: 1.35; }

.njt-nofi-close-button {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}
.njt-nofi-close-button.njt-nofi-hide,
.njt-nofi-close-button {
    display: inline-flex !important;
}
.njt-nofi-close-button:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-50%) scale(1.06);
}
.njt-nofi-close-button .njt-nofi-close-icon-container { display: flex; }
.njt-nofi-close-button .njt-nofi-close-icon {
    width: 12px;
    height: 12px;
    fill: #fff;
}

/* Hide the "bring me back" toggle button — staying dismissed feels cleaner */
.njt-nofi-toggle-button,
.njt-nofi-display-toggle { display: none !important; }

@media (max-width: 600px) {
    .njt-nofi-notification-bar {
        font-size: 12.5px;
        padding: 6px 48px 6px 12px !important;
    }
    body { padding-top: 56px; }
}
