.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 300px;
    word-wrap: break-word;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background-color: #446f5c;
    border-left: 4px solid #569479;
}

.notification.error {
    background-color: #F44336;
    border-left: 4px solid #D32F2F;
}

.notification.warning {
    background-color: #FF9800;
    border-left: 4px solid #F57C00;
}

.notification.info {
    background-color: #2196F3;
    border-left: 4px solid #1976D2;
}

/* For smaller screens */
@media (max-width: 600px) {
    .notification {
        bottom: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}
