.custom-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 450px;
    padding: 16px 20px;
    background: #f9d7d7;
    border-radius: 6px;
    color: #c73b3b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    animation: alertFadeIn .3s ease;
}

.custom-alert__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e53935;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.custom-alert__message {
    flex: 1;
    margin: 0;
}

.custom-alert__close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #c73b3b;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    margin-left: 8px;
    transition: opacity .2s ease;
}

.custom-alert__close:hover {
    opacity: .7;
}

.custom-alert.closing {
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
}

@keyframes alertFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}