.success-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    color: #374151;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    z-index: 9999;
    transform: translateX(-120%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
	width: 100%;
    min-width: 280px;
	overflow: hidden;
}

.success-toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.toast-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    object-fit: cover;
}

.toast-text {
    flex: 1;
    line-height: 1.4;
}

.toast-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: #374151;
}

.toast-company {
    font-size: 12px;
    margin-bottom: 2px;
    color: #6b7280;
}

.toast-product {
    font-size: 13px;
    font-weight: 500;
    color: #2563eb;
}

.toast-close {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
    color: #6b7280;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.toast-decoration {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 80px;
    /* height: 80px; */
    opacity: 0.7;
    z-index: -1;
}

@media (max-width: 768px) {
    .success-toast {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        min-width: auto;
    }
}
