.notification-container {
    position: fixed;
    top: 60px; /* Adjust this value from the bottom of navbar*/
    width: 100%;
    max-width: 600px;
}

@media (max-width: 768px) {
    .notification-container {
        top: 80px; /* Adjust for mobile if navbar height differs */
        width: 100%;
        padding: 0 10px;
    }
}