.notification {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: inline-block;
    z-index: 1000;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 600px) {
    .notification {
        right: 10px;
        bottom: 60px;
        display: inline-block;
        text-align: center;
    }
}
