#alert-container {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-alert {
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ccc;
    min-width: 320px;
    animation: alertIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.alert-success {
    border-left-color: #10b981;
}

.alert-error {
    border-left-color: #ef4444;
}

@keyframes alertIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.custom-alert.exit {
    animation: alertOut 0.3s ease forwards;
}

@keyframes alertOut {
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}
