uix-notification {
    .notification {
        position: fixed;
        bottom: 150px;
        right: 20px;
        padding: 15px 20px;
        border-radius: 4px;
        color: var(--unyt-text-primary-inverse);
        z-index: 10;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        opacity: 0;
        transform: translateX(100%);
        max-width: 350px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--unyt-border-primary);
    
        &.success {
            background-color: green;
        }
    
        &.error {
            background-color: red;
        }
    
        &.show {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .notification-content {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .notification-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
        color: var(--unyt-text-primary-inverse);
    
        &.success {
            background: rgba(255, 255, 255, 0.2);
        }
    
        &.error {
            background: rgba(255, 255, 255, 0.2);
        }
    }
    
    .notification-message {
        font-size: 0.95rem;
    }
    
    @media screen and (max-width: 700px) {
        .notification {
            max-width: calc(100% - 40px);
            bottom: 10px;
            right: 10px;
        }
    }
    
}

