.toast-container-custom {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
}

.toast-notification {
    display: none;
    min-width: 320px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.toast-notification.show {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.toast-notification.hide {
    animation: slideOut 0.3s ease forwards;
}

.toast-notification.toast-error {
    background-color: #e54d4d;
    color: #ffffff;
}

.toast-notification.toast-info {
    background-color: #ffffff;
    color: #1e293b;
    border: 1px solid #e6e8eb;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    opacity: 0.9;
}

.toast-info .toast-message {
    color: #626976;
}

.toast-close {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
}

.toast-close:hover {
    opacity: 1;
}

.toast-close::before {
    content: '\00d7';
}

.toast-error .toast-close {
    color: #ffffff;
}

.toast-info .toast-close {
    color: #626976;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
