
#custom-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.custom-toast {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    color: #333333;
    padding: 20px 40px 20px 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    width: 380px;
    max-width: 90vw;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    animation: toast-slide-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.2s, box-shadow 0.2s;
}

.custom-toast:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
}

.custom-toast.toast-error {
    border-left: 4px solid #F44336;
}

.custom-toast img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 2px;
    flex-shrink: 0;
}

.custom-toast-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-toast-title {
    font-weight: bold;
    font-size: 16px;
    color: #222;
}

.custom-toast-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.custom-toast-close {
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
    color: #999;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}

.custom-toast-close:hover {
    color: #333;
}

@keyframes toast-slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}