.notify-container {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 999999;
    pointer-events: none;
}

.notify {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.15);
    min-width: 18.75rem;
    max-width: 25rem;
    pointer-events: auto;
    animation: slideIn 0.3s ease;
    border-left: 0.25rem solid;
}

.notify.success {
    border-left-color: #22c55e;
}

.notify.error {
    border-left-color: #ef4444;
}

.notify.warning {
    border-left-color: #f59e0b;
}

.notify.info {
    border-left-color: #3b82f6;
}

.notify-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111;
}

.notify-message {
    color: #666;
    font-size: 0.875rem;
}

@keyframes slideIn {
    from {
        transform: translateX(-25rem);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-25rem);
        opacity: 0;
    }
}

.notify.removing {
    animation: slideOut 0.3s ease;
}
