

/* In-page notification bar */
.inpage-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #004D40;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0.95;
    transition: opacity 0.5s, transform 0.5s;
}

.inpage-notification.hide {
    opacity: 0;
    transform: translateY(-20px);
}