.mlc-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 400px;
}

.mlc-notification--visible {
    opacity: 1;
    transform: translateY(0);
}

.mlc-notification--success {
    border-left: 4px solid #46b450;
    color: #46b450;
}

.mlc-notification--error {
    border-left: 4px solid #dc3232;
    color: #dc3232;
}
